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
1 module custom-types-test {
2
3         yang-version 1;
4     namespace "urn:simple.container.demo";
5     prefix "iit";
6     
7     organization "Cisco";
8     contact "WILL-BE-DEFINED-LATER";
9      
10     leaf inst-id-leaf1 {
11         type instance-identifier {
12             require-instance false;
13         }
14     }
15      
16     leaf inst-id-leaf2 {
17         type instance-identifier;
18     }
19
20     identity crypto-base {
21         description "crypto-base description";
22     }
23      
24     identity crypto-alg {
25         base "crypto-base";
26         description "crypto-alg description";
27     }
28         
29 }