Refactored YangModelParserImpl
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / test / resources / types / custom-types-test@2012-4-4.yang
diff --git a/opendaylight/sal/yang-prototype/code-generator/yang-model-parser-impl/src/test/resources/types/custom-types-test@2012-4-4.yang b/opendaylight/sal/yang-prototype/code-generator/yang-model-parser-impl/src/test/resources/types/custom-types-test@2012-4-4.yang
new file mode 100644 (file)
index 0000000..4231699
--- /dev/null
@@ -0,0 +1,29 @@
+module custom-types-test {
+
+       yang-version 1;
+    namespace "urn:simple.container.demo";
+    prefix "iit";
+    
+    organization "Cisco";
+    contact "WILL-BE-DEFINED-LATER";
+     
+    leaf inst-id-leaf1 {
+        type instance-identifier {
+           require-instance false;
+        }
+    }
+     
+    leaf inst-id-leaf2 {
+        type instance-identifier;
+    }
+
+    identity crypto-base {
+        description "crypto-base description";
+    }
+     
+    identity crypto-alg {
+        base "crypto-base";
+        description "crypto-alg description";
+    }
+       
+}