739c777350ab4cdc1a2b09b8bee87dfd24e781d4
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / xpath / XPathSchemaContextFactory.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.api.schema.xpath;
9
10 import javax.annotation.Nonnull;
11 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
12
13 /**
14  * A factory for obtaining {@link XPathSchemaContext}s. This is the primary entry point to an XPath evaluation
15  * implementation. Users are expected to resolve these via their service resolution framework, be it
16  * {@link java.util.ServiceLoader}, OSGi or similar.
17  *
18  * Implementations are required to support {@link java.util.ServiceLoader}.
19  */
20 public interface XPathSchemaContextFactory {
21     /**
22      * Create an {@link XPathSchemaContext} based on a {@link SchemaContext}. This effectively binds the namespaces
23      * the user expects to map to YANG schema. The {@link XPathExpression} compilation, relocation and optimization
24      * processes can take advantage of the YANG schema provided.
25      *
26      * @param context SchemaContext associated with the resulting {@link XPathSchemaContext}
27      * @return An {@link XPathSchemaContext} instance
28      */
29     @Nonnull XPathSchemaContext createContext(@Nonnull SchemaContext context);
30 }