BUG-4688: switch revisions from Date to Revision
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / Module.java
1 /*
2  * Copyright (c) 2013 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.model.api;
9
10 import java.net.URI;
11 import java.util.List;
12 import java.util.Optional;
13 import java.util.Set;
14 import javax.annotation.Nonnull;
15 import javax.annotation.concurrent.Immutable;
16 import org.opendaylight.yangtools.concepts.SemVer;
17 import org.opendaylight.yangtools.yang.common.QNameModule;
18 import org.opendaylight.yangtools.yang.common.Revision;
19 import org.opendaylight.yangtools.yang.common.YangVersion;
20
21 /**
22  * This interface contains the methods for getting the data from the YANG
23  * module.<br>
24  * <br>
25  * <i>Example of YANG module</i> <code><br>
26  * {@link #getName() <b><font color="#FF0000">module</font></b>} module_name{<br>
27     &nbsp;&nbsp;{@link #getYangVersion() <b><font color="#8b4513">yang-version</font></b>} "1";<br><br>
28
29     &nbsp;&nbsp;{@link #getNamespace() <b><font color="#00FF00">namespace</font></b>} "urn:module:namespace";<br>
30     &nbsp;&nbsp;{@link #getPrefix() <b><font color="#0000FF">prefix</font></b><a name="prefix"></a>} "prefix";<br><br>
31
32     &nbsp;&nbsp;{@link #getDescription() <b><font color="#b8860b">description</font></b>} "description test";<br>
33     &nbsp;&nbsp;{@link #getReference() <b><font color="#008b8b">reference</font></b>} "reference test";<br><br>
34
35     &nbsp;&nbsp;{@link #getOrganization() <b><font color="#606060">organization</font></b>}
36     "John Doe, john.doe@email.com";<br>
37     &nbsp;&nbsp;{@link #getContact() <b><font color="#FF9900">contact</font></b>} "http://www.opendaylight.org/";<br>
38     <br>
39
40     &nbsp;&nbsp;{@link #getFeatures() <b><font color="#8b0000">feature</font></b>} feature-test{<br>
41     &nbsp;&nbsp;&nbsp;&nbsp; description "description of some feature";<br>
42     &nbsp;&nbsp;}<br>
43
44     &nbsp;&nbsp;{@link #getNotifications() <b><font color="#b22222">notification</font></b>} notification-test;<br>
45     &nbsp;&nbsp;{@link #getRpcs() <b><font color="#d2691e">rpc</font></b>} rpc-test;<br>
46     <!-- &nbsp;&nbsp;{@link #getDeviations() <b><font color="#b8860b">deviation</font></b>} deviation-test;<br> -->
47     &nbsp;&nbsp;{@link #getIdentities() <b><font color="#bdb76b">identity</font></b>} identity-test;<br>
48     &nbsp;&nbsp;{@link #getExtensionSchemaNodes() <b><font color="#808000">extension</font></b>} extension-test;<br>
49
50
51     &nbsp;&nbsp;{@link #getRevision() <b><font color="#339900">revision</font></b>} 2011-08-27 {<br>
52
53     &nbsp;&nbsp;{@link #getImports() <b><font color="#9400d3">import</font></b>} other_module {<br>
54     &nbsp;&nbsp;&nbsp;&nbsp;prefix "other_module_prefix"<br>
55     &nbsp;&nbsp;&nbsp;&nbsp;revision-date 2011-08-27<br>
56     &nbsp;&nbsp;}<br><br>
57
58     &nbsp;&nbsp;container cont {<br>
59     &nbsp;&nbsp;}<br>
60
61     &nbsp;&nbsp;{@link #getAugmentations() <b><font color="#dc143c">augment</font></b>} "/cont" { ;<br>
62     &nbsp;&nbsp;}<br>
63     }
64
65     </code>
66  */
67 @Immutable
68 public interface Module extends DataNodeContainer, NotificationNodeContainer {
69     /**
70      * Returns the name of the module which is specified as argument of YANG
71      * {@link Module <b><font color="#FF0000">module</font></b>} keyword.
72      *
73      * @return string with the name of the module
74      */
75     String getName();
76
77     /**
78      * Returns a {@link QNameModule}, which contains the namespace and
79      * the revision of the module.
80      *
81      * @return QNameModule identifier.
82      */
83     QNameModule getQNameModule();
84
85     /**
86      * Returns the namespace of the module which is specified as argument of
87      * YANG {@link Module <b><font color="#00FF00">namespace</font></b>}
88      * keyword. If you need both namespace and revision, please consider using
89      * {@link #getQNameModule()}.
90      *
91      * @return URI format of the namespace of the module
92      */
93     default URI getNamespace() {
94         return getQNameModule().getNamespace();
95     }
96
97     /**
98      * Returns the revision date for the module. If you need both namespace and
99      * revision, please consider using {@link #getQNameModule()}.
100      *
101      * @return date of the module revision which is specified as argument of
102      *         YANG {@link Module <b><font color="#339900">revison</font></b>}
103      *         keyword
104      */
105     default Optional<Revision> getRevision() {
106         return getQNameModule().getRevision();
107     }
108
109     /**
110      * Returns the semantic version of yang module.
111      *
112      * <p>
113      * If the semantic version is not specified, default semantic version of
114      * module is returned.
115      *
116      * @return SemVer semantic version of yang module which is specified as
117      *         argument of
118      *         (urn:opendaylight:yang:extension:semantic-version?revision
119      *         =2016-02-02)semantic-version statement
120      */
121     Optional<SemVer> getSemanticVersion();
122
123     /**
124      * Returns the prefix of the module.
125      *
126      * @return string with the module prefix which is specified as argument of
127      *         YANG {@link Module <b><font color="#0000FF">prefix</font></b>}
128      *         keyword
129      */
130     String getPrefix();
131
132     /**
133      * Returns the YANG version.
134      *
135      * @return YANG version of this module.
136      */
137     YangVersion getYangVersion();
138
139     /**
140      * Returns the module description.
141      *
142      * @return string with the module description which is specified as argument
143      *         of YANG {@link Module <b><font
144      *         color="#b8860b">description</font></b>} keyword
145      */
146     String getDescription();
147
148     /**
149      * Returns the module reference.
150      *
151      * @return string with the module reference which is specified as argument
152      *         of YANG {@link Module <b><font
153      *         color="#008b8b">reference</font></b>} keyword
154      */
155     String getReference();
156
157     /**
158      * Returns the module organization.
159      *
160      * @return string with the name of the organization specified in the module
161      *         as the argument of YANG {@link Module <b><font
162      *         color="#606060">organization</font></b>} keyword
163      */
164     String getOrganization();
165
166     /**
167      * Returns the module contact.
168      *
169      * <p>
170      * The contact represents the person or persons to whom technical queries
171      * concerning this module should be sent, such as their name, postal
172      * address, telephone number, and electronic mail address.
173      *
174      * @return string with the contact data specified in the module as the
175      *         argument of YANG {@link Module <b><font
176      *         color="#FF9900">contact</font></b>} keyword
177      */
178     String getContact();
179
180     /**
181      * Returns imports which represents YANG modules which are imported to this
182      * module via <b>import</b> statement.
183      *
184      * @return set of module imports which are specified in the module as the
185      *         argument of YANG {@link Module <b><font
186      *         color="#9400d3">import</font></b>} keywords.
187      */
188     Set<ModuleImport> getImports();
189
190     Set<Module> getSubmodules();
191
192     /**
193      * Returns <code>FeatureDefinition</code> instances which contain data from
194      * <b>feature</b> statements defined in the module.
195      *
196      * <p>
197      * The feature is used to define a mechanism by which portions of the schema
198      * are marked as conditional.
199      *
200      * @return feature statements in lexicographical order which are specified
201      *         in the module as the argument of YANG {@link Module <b><font
202      *         color="#8b0000">feature</font></b>} keywords.
203      */
204     Set<FeatureDefinition> getFeatures();
205
206     /**
207      * Returns <code>AugmentationSchema</code> instances which contain data from
208      * <b>augment</b> statements defined in the module.
209      *
210      * @return set of the augmentation schema instances which are specified in
211      *         the module as YANG {@link Module <b><font
212      *         color="#dc143c">augment</font></b>} keyword and are
213      *         lexicographically ordered
214      */
215     Set<AugmentationSchema> getAugmentations();
216
217     /**
218      * Returns <code>RpcDefinition</code> instances which contain data from
219      * <b>rpc</b> statements defined in the module.
220      *
221      * @return set of the rpc definition instances which are specified in the
222      *         module as YANG {@link Module <b><font
223      *         color="#d2691e">rpc</font></b>} keywords and are lexicographicaly
224      *         ordered
225      */
226     Set<RpcDefinition> getRpcs();
227
228     /**
229      * Returns <code>Deviation</code> instances which contain data from
230      * <b>deviation</b> statements defined in the module.
231      *
232      * @return set of the deviation instances
233      */
234     Set<Deviation> getDeviations();
235
236     /**
237      * Returns <code>IdentitySchemaNode</code> instances which contain data from
238      * <b>identity</b> statements defined in the module.
239      *
240      * @return set of identity schema node instances which are specified in the
241      *         module as YANG {@link Module <b><font
242      *         color="#bdb76b">identity</font></b>} keywords and are
243      *         lexicographically ordered
244      */
245     Set<IdentitySchemaNode> getIdentities();
246
247     /**
248      * Returns <code>ExtensionDefinition</code> instances which contain data
249      * from <b>extension</b> statements defined in the module.
250      *
251      * @return set of extension definition instances which are specified in the
252      *         module as YANG {@link Module <b><font
253      *         color="#808000">extension</font></b>} keyword and are
254      *         lexicographically ordered
255      */
256     List<ExtensionDefinition> getExtensionSchemaNodes();
257
258     /**
259      * Returns unknown nodes defined in module.
260      *
261      * @return unknown nodes in lexicographical order
262      */
263     @Nonnull
264     List<UnknownSchemaNode> getUnknownSchemaNodes();
265 }