Merge "Added uses to extends list. Groupings in YANG are used through key word uses...
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-generator-impl / src / test / resources / uses-of-grouping / uses-of-grouping-augment.yang
1 module grouping_uses_augment {
2     
3     namespace "urn:grouping:uses:augment";
4     prefix "sbd";
5
6     organization "OPEN DAYLIGHT";
7     contact "http://www.opendaylight.org/";
8
9     revision 2013-07-18 {
10     }
11
12     grouping grouping-augment-test {
13         leaf leaf-grouping-augment-test {
14             type string;
15         }
16     }
17     
18
19     container container-augment {
20         leaf leaf-container-augment1 {
21             type string;
22         }
23         leaf leaf-container-augment2 {
24             type int64;
25         }
26     }         
27     
28     augment "/container-augment" {
29         uses grouping-augment-test;        
30     }
31 }