Refactored YangModelParserImpl
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / Module.java
1 /*\r
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 package org.opendaylight.controller.yang.model.api;\r
9 \r
10 import java.net.URI;\r
11 import java.util.Date;\r
12 import java.util.List;\r
13 import java.util.Set;\r
14 \r
15 public interface Module extends DataNodeContainer {\r
16 \r
17     URI getNamespace();\r
18 \r
19     String getName();\r
20 \r
21     Date getRevision();\r
22 \r
23     String getPrefix();\r
24 \r
25     String getYangVersion();\r
26 \r
27     String getDescription();\r
28 \r
29     String getReference();\r
30 \r
31     String getOrganization();\r
32 \r
33     String getContact();\r
34 \r
35     Set<ModuleImport> getImports();\r
36 \r
37     Set<FeatureDefinition> getFeatures();\r
38 \r
39     Set<NotificationDefinition> getNotifications();\r
40 \r
41     Set<AugmentationSchema> getAugmentations();\r
42 \r
43     Set<RpcDefinition> getRpcs();\r
44 \r
45     Set<Deviation> getDeviations();\r
46 \r
47     Set<IdentitySchemaNode> getIdentities();\r
48 \r
49     List<ExtensionDefinition> getExtensionSchemaNodes();\r
50 \r
51 }\r