Fix eclipse/checkstyle warnings
[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  * <p>
19  * Implementations are required to support {@link java.util.ServiceLoader}.
20  */
21 public interface XPathSchemaContextFactory {
22     /**
23      * Create an {@link XPathSchemaContext} based on a {@link SchemaContext}. This effectively binds the namespaces
24      * the user expects to map to YANG schema. The {@link XPathExpression} compilation, relocation and optimization
25      * processes can take advantage of the YANG schema provided.
26      *
27      * @param context SchemaContext associated with the resulting {@link XPathSchemaContext}
28      * @return An {@link XPathSchemaContext} instance
29      */
30     @Nonnull XPathSchemaContext createContext(@Nonnull SchemaContext context);
31 }