ebf984941632b92a90c2d49636d7cc63c81c8f92
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / YangDataSchemaNode.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. 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
9 package org.opendaylight.yangtools.yang.model.api;
10
11 import com.google.common.annotations.Beta;
12
13 /**
14  * Represents 'yang-data' extension statement defined in https://tools.ietf.org/html/rfc8040#section-8
15  * This statement must appear as a top-level statement, otherwise it is ignored and does not appear in the final
16  * schema context. It must contain exactly one top-level container node (directly or indirectly via a uses statement).
17  */
18 // FIXME: 2.0.0: this interface should live in a separate RFC8040 API artifact.
19 @Beta
20 public interface YangDataSchemaNode extends UnknownSchemaNode {
21
22     /**
23      * Returns container schema node.
24      *
25      * @return container schema node
26      */
27     ContainerSchemaNode getContainer();
28 }