Make AnyDataSchemaNode.getSchemaOfAnyData() return Optional
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / Module.java
index 3d5cdee20592022588cd10d36a3036f356838ecb..7717e912192671fd2555f5885df9395bb4de4306 100644 (file)
 package org.opendaylight.yangtools.yang.model.api;
 
 import java.net.URI;
-import java.util.Date;
 import java.util.List;
+import java.util.Optional;
 import java.util.Set;
+import javax.annotation.concurrent.Immutable;
+import org.opendaylight.yangtools.concepts.SemVer;
+import org.opendaylight.yangtools.yang.common.QNameModule;
+import org.opendaylight.yangtools.yang.common.Revision;
+import org.opendaylight.yangtools.yang.common.YangVersion;
 
 /**
  * This interface contains the methods for getting the data from the YANG
- * module.<br />
- * <br />
- * <i>Example of YANG module</i> <code><br/>
- * {@link #getName() <b><font color="#FF0000">module</font></b>} module_name{<br />
-    &nbsp;&nbsp;{@link #getYangVersion() <b><font color="#8b4513">yang-version</font></b>} "1";<br /><br />
+ * module.<br>
+ * <br>
+ * <i>Example of YANG module</i> <code><br>
+ * {@link #getName() <b><font color="#FF0000">module</font></b>} module_name{<br>
+    &nbsp;&nbsp;{@link #getYangVersion() <b><font color="#8b4513">yang-version</font></b>} "1";<br><br>
 
-    &nbsp;&nbsp;{@link #getNamespace() <b><font color="#00FF00">namespace</font></b>} "urn:module:namespace";<br />
-    &nbsp;&nbsp;{@link #getPrefix() <b><font color="#0000FF">prefix</font></b><a name="prefix"></a>} "prefix";<br /><br />
+    &nbsp;&nbsp;{@link #getNamespace() <b><font color="#00FF00">namespace</font></b>} "urn:module:namespace";<br>
+    &nbsp;&nbsp;{@link #getPrefix() <b><font color="#0000FF">prefix</font></b><a name="prefix"></a>} "prefix";<br><br>
 
-    &nbsp;&nbsp;{@link #getDescription() <b><font color="#b8860b">description</font></b>} "description test";<br />
-    &nbsp;&nbsp;{@link #getReference() <b><font color="#008b8b">reference</font></b>} "reference test";<br /><br />
+    &nbsp;&nbsp;{@link #getDescription() <b><font color="#b8860b">description</font></b>} "description test";<br>
+    &nbsp;&nbsp;{@link #getReference() <b><font color="#008b8b">reference</font></b>} "reference test";<br><br>
 
-    &nbsp;&nbsp;{@link #getOrganization() <b><font color="#606060">organization</font></b>} "John Doe, john.doe@email.com";<br />
-    &nbsp;&nbsp;{@link #getContact() <b><font color="#FF9900">contact</font></b>} "http://www.opendaylight.org/";<br /><br />
+    &nbsp;&nbsp;{@link #getOrganization() <b><font color="#606060">organization</font></b>}
+    "John Doe, john.doe@email.com";<br>
+    &nbsp;&nbsp;{@link #getContact() <b><font color="#FF9900">contact</font></b>} "http://www.opendaylight.org/";<br>
+    <br>
 
-    &nbsp;&nbsp;{@link #getFeatures() <b><font color="#8b0000">feature</font></b>} feature-test{<br />
-    &nbsp;&nbsp;&nbsp;&nbsp; description "description of some feature";<br />
-    &nbsp;&nbsp;}</br>
+    &nbsp;&nbsp;{@link #getFeatures() <b><font color="#8b0000">feature</font></b>} feature-test{<br>
+    &nbsp;&nbsp;&nbsp;&nbsp; description "description of some feature";<br>
+    &nbsp;&nbsp;}<br>
 
-    &nbsp;&nbsp;{@link #getNotifications() <b><font color="#b22222">notification</font></b>} notification-test;<br />
-    &nbsp;&nbsp;{@link #getRpcs() <b><font color="#d2691e">rpc</font></b>} rpc-test;<br />
-    <!-- &nbsp;&nbsp;{@link #getDeviations() <b><font color="#b8860b">deviation</font></b>} deviation-test;<br /> -->
-    &nbsp;&nbsp;{@link #getIdentities() <b><font color="#bdb76b">identity</font></b>} identity-test;<br />
-    &nbsp;&nbsp;{@link #getExtensionSchemaNodes() <b><font color="#808000">extension</font></b>} extension-test;<br />
+    &nbsp;&nbsp;{@link #getNotifications() <b><font color="#b22222">notification</font></b>} notification-test;<br>
+    &nbsp;&nbsp;{@link #getRpcs() <b><font color="#d2691e">rpc</font></b>} rpc-test;<br>
+    <!-- &nbsp;&nbsp;{@link #getDeviations() <b><font color="#b8860b">deviation</font></b>} deviation-test;<br> -->
+    &nbsp;&nbsp;{@link #getIdentities() <b><font color="#bdb76b">identity</font></b>} identity-test;<br>
+    &nbsp;&nbsp;{@link #getExtensionSchemaNodes() <b><font color="#808000">extension</font></b>} extension-test;<br>
 
 
-    &nbsp;&nbsp;{@link #getRevision() <b><font color="#339900">revision</font></b>} 2011-08-27 {<br />
+    &nbsp;&nbsp;{@link #getRevision() <b><font color="#339900">revision</font></b>} 2011-08-27 {<br>
 
-    &nbsp;&nbsp;{@link #getImports() <b><font color="#9400d3">import</font></b>} other_module {<br />
-    &nbsp;&nbsp;&nbsp;&nbsp;prefix "other_module_prefix"<br />
-    &nbsp;&nbsp;&nbsp;&nbsp;revision-date 2011-08-27<br />
-    &nbsp;&nbsp;}<br /><br />
+    &nbsp;&nbsp;{@link #getImports() <b><font color="#9400d3">import</font></b>} other_module {<br>
+    &nbsp;&nbsp;&nbsp;&nbsp;prefix "other_module_prefix"<br>
+    &nbsp;&nbsp;&nbsp;&nbsp;revision-date 2011-08-27<br>
+    &nbsp;&nbsp;}<br><br>
 
-    &nbsp;&nbsp;container cont {<br />
-    &nbsp;&nbsp;}<br />
+    &nbsp;&nbsp;container cont {<br>
+    &nbsp;&nbsp;}<br>
 
-    &nbsp;&nbsp;{@link #getAugmentations() <b><font color="#dc143c">augment</font></b>} "/cont" { ;<br />
-    &nbsp;&nbsp;}<br />
+    &nbsp;&nbsp;{@link #getAugmentations() <b><font color="#dc143c">augment</font></b>} "/cont" { ;<br>
+    &nbsp;&nbsp;}<br>
     }
 
     </code>
  */
+@Immutable
+public interface Module extends DataNodeContainer, DocumentedNode, NotificationNodeContainer, NamespaceRevisionAware {
+    /**
+     * Returns the name of the module which is specified as argument of YANG
+     * {@link Module <b><font color="#FF0000">module</font></b>} keyword.
+     *
+     * @return string with the name of the module
+     */
+    String getName();
 
-public interface Module extends DataNodeContainer, YangNode {
+    /**
+     * Returns a {@link QNameModule}, which contains the namespace and
+     * the revision of the module.
+     *
+     * @return QNameModule identifier.
+     */
+    QNameModule getQNameModule();
 
     /**
      * Returns the namespace of the module which is specified as argument of
      * YANG {@link Module <b><font color="#00FF00">namespace</font></b>}
-     * keyword.
+     * keyword. If you need both namespace and revision, please consider using
+     * {@link #getQNameModule()}.
      *
      * @return URI format of the namespace of the module
      */
-    URI getNamespace();
+    @Override
+    default URI getNamespace() {
+        return getQNameModule().getNamespace();
+    }
 
     /**
-     * Returns the name of the module which is specified as argument of YANG
-     * {@link Module <b><font color="#FF0000">module</font></b>} keyword
+     * Returns the revision date for the module. If you need both namespace and
+     * revision, please consider using {@link #getQNameModule()}.
      *
-     * @return string with the name of the module
+     * @return date of the module revision which is specified as argument of
+     *         YANG {@link Module <b><font color="#339900">revison</font></b>}
+     *         keyword
      */
-    String getName();
+    @Override
+    default Optional<Revision> getRevision() {
+        return getQNameModule().getRevision();
+    }
 
     /**
-     * Returns the revision date for the module.
+     * Returns the semantic version of yang module.
      *
-     * @return date of the module revision which is specified as argument of
-     *         YANG {@link Module <b><font color="#339900">revison</font></b>}
-     *         keyword
+     * <p>
+     * If the semantic version is not specified, default semantic version of
+     * module is returned.
+     *
+     * @return SemVer semantic version of yang module which is specified as
+     *         argument of
+     *         (urn:opendaylight:yang:extension:semantic-version?revision
+     *         =2016-02-02)semantic-version statement
      */
-    Date getRevision();
+    Optional<SemVer> getSemanticVersion();
 
     /**
-     * Returns the prefix of the module
+     * Returns the prefix of the module.
      *
      * @return string with the module prefix which is specified as argument of
      *         YANG {@link Module <b><font color="#0000FF">prefix</font></b>}
@@ -97,13 +133,9 @@ public interface Module extends DataNodeContainer, YangNode {
     /**
      * Returns the YANG version.
      *
-     * Default value is 1.
-     *
-     * @return string with the module YANG version which is specified as
-     *         argument of YANG {@link Module <b> <font
-     *         color="#8b4513">yang-version</font></b>} keyword
+     * @return YANG version of this module.
      */
-    String getYangVersion();
+    YangVersion getYangVersion();
 
     /**
      * Returns the module description.
@@ -112,6 +144,7 @@ public interface Module extends DataNodeContainer, YangNode {
      *         of YANG {@link Module <b><font
      *         color="#b8860b">description</font></b>} keyword
      */
+    @Override
     String getDescription();
 
     /**
@@ -121,6 +154,7 @@ public interface Module extends DataNodeContainer, YangNode {
      *         of YANG {@link Module <b><font
      *         color="#008b8b">reference</font></b>} keyword
      */
+    @Override
     String getReference();
 
     /**
@@ -135,6 +169,7 @@ public interface Module extends DataNodeContainer, YangNode {
     /**
      * Returns the module contact.
      *
+     * <p>
      * The contact represents the person or persons to whom technical queries
      * concerning this module should be sent, such as their name, postal
      * address, telephone number, and electronic mail address.
@@ -155,10 +190,13 @@ public interface Module extends DataNodeContainer, YangNode {
      */
     Set<ModuleImport> getImports();
 
+    Set<Module> getSubmodules();
+
     /**
      * Returns <code>FeatureDefinition</code> instances which contain data from
      * <b>feature</b> statements defined in the module.
      *
+     * <p>
      * The feature is used to define a mechanism by which portions of the schema
      * are marked as conditional.
      *
@@ -168,16 +206,6 @@ public interface Module extends DataNodeContainer, YangNode {
      */
     Set<FeatureDefinition> getFeatures();
 
-    /**
-     * Returns <code>NotificationDefinition</code> instances which contain data
-     * from <b>notification</b> statements defined in the module.
-     *
-     * @return notification statements in lexicographical order which are
-     *         specified in the module as the argument of YANG {@link Module
-     *         <b><font color="#b22222">notification</font></b>} keywords.
-     */
-    Set<NotificationDefinition> getNotifications();
-
     /**
      * Returns <code>AugmentationSchema</code> instances which contain data from
      * <b>augment</b> statements defined in the module.
@@ -185,9 +213,9 @@ public interface Module extends DataNodeContainer, YangNode {
      * @return set of the augmentation schema instances which are specified in
      *         the module as YANG {@link Module <b><font
      *         color="#dc143c">augment</font></b>} keyword and are
-     *         lexicographicaly ordered
+     *         lexicographically ordered
      */
-    Set<AugmentationSchema> getAugmentations();
+    Set<AugmentationSchemaNode> getAugmentations();
 
     /**
      * Returns <code>RpcDefinition</code> instances which contain data from
@@ -215,7 +243,7 @@ public interface Module extends DataNodeContainer, YangNode {
      * @return set of identity schema node instances which are specified in the
      *         module as YANG {@link Module <b><font
      *         color="#bdb76b">identity</font></b>} keywords and are
-     *         lexicographicaly ordered
+     *         lexicographically ordered
      */
     Set<IdentitySchemaNode> getIdentities();
 
@@ -226,15 +254,7 @@ public interface Module extends DataNodeContainer, YangNode {
      * @return set of extension definition instances which are specified in the
      *         module as YANG {@link Module <b><font
      *         color="#808000">extension</font></b>} keyword and are
-     *         lexicographicaly ordered
+     *         lexicographically ordered
      */
     List<ExtensionDefinition> getExtensionSchemaNodes();
-
-    /**
-     * Returns unknown nodes defined in module.
-     *
-     * @return unknown nodes in lexicographical order
-     */
-    List<UnknownSchemaNode> getUnknownSchemaNodes();
-
 }