Simplify method isMutualExclusive in Subnet.
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / cnsn-to-json / simple-yang-types / simple-yang-types.yang
1 module simple-yang-types {
2   namespace "simple:yang:types";  
3
4   prefix "smptp";
5    revision 2013-11-5 {
6     description  "Initial revision.";
7   }
8   
9   container cont1 {
10           leaf lf11 {
11                 type string;
12           }
13           leaf-list lflst11 {
14                 type int32;
15           }
16           leaf-list lflst12 {
17                 type string;
18           }
19           list lst11 {
20                 key lf111;
21                 leaf lf111 {
22                         type uint8;
23                 }
24                 leaf lf112 {
25                         type string;
26                 }               
27                 container cont111 {
28                         leaf lf1111 {
29                                 type string;
30                         }
31                         leaf-list lflst1111 {
32                                 type int32;
33                         }
34                         list lst1111 {
35                                 leaf lf1111A {
36                                         type string;
37                                 }
38                                 leaf lf1111B {
39                                         type uint8;
40                                 }
41                         }
42                 }
43                 list lst111 {
44                         leaf lf1111 {
45                                 type int32;
46                         }
47                 }
48                 list lst112 {
49                         leaf lf1121 {
50                                 type string;
51                         }
52                 }               
53           }
54           
55   }
56
57 }