Populate data/ hierarchy
[yangtools.git] / model / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / FeatureEffectiveStatementNamespace.java
1 /*
2  * Copyright (c) 2018 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 package org.opendaylight.yangtools.yang.model.api.stmt;
9
10 import com.google.common.annotations.Beta;
11
12 /**
13  * Namespace of available features. According to RFC7950 section 6.2.1:
14  * <pre>
15  *     All feature names defined in a module and its submodules share the
16  *     same feature identifier namespace.
17  * </pre>
18  *
19  * @author Robert Varga
20  */
21 @Beta
22 public abstract class FeatureEffectiveStatementNamespace
23         extends EffectiveStatementNamespace<FeatureEffectiveStatement> {
24     private FeatureEffectiveStatementNamespace() {
25         // Should never be instantiated
26     }
27 }