Delete netconf
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / nn-to-xml / choice / module-with-choice.yang
1 module module-with-choice {
2   namespace "module:with:choice";  
3
4   prefix "mowicho";
5   
6   revision 2013-12-18 {    
7   }
8   
9
10   container cont {
11     choice choA {
12         case caA1 {
13             leaf lf1 {
14                 type string;
15             }
16         }
17         case caA2 {
18             leaf lf2 {
19                 type string;
20             }
21         } 
22     }
23   }    
24           
25 }