Merge "AbstractConfigTest - exposed BundleContext and ServiceRegistration mock."
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / xml-to-composite-node / data-container-yang / data-container.yang
1 module data-container-yang {
2   namespace "data:container:yang";  
3
4   prefix "dtconyg";
5   revision 2013-11-19 {    
6   }
7   
8   container cont {
9         leaf lf1 {
10                 type string;
11         }
12         leaf-list lflst1 {
13                 type string;
14         }
15         list lst1 {
16                 leaf lf11 {
17                         type string;
18                 } 
19         }
20         container cont1 {
21                 leaf lf11 {
22                         type uint8;
23                 }
24         }
25   }
26 }