Bug 8523: Add support for parsing restconf:yang-data extension
[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 @Beta
19 public interface YangDataSchemaNode extends UnknownSchemaNode {
20
21     /**
22      * Returns container schema node.
23      *
24      * @return container schema node
25      */
26     ContainerSchemaNode getContainer();
27 }