Merge "OF plugin classes must have a strict dependency on Connection Service"
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-generator-impl / src / test / resources / uses-of-grouping / uses-of-grouping-modul.yang
1 module grouping_uses_modul {
2
3     namespace "urn:grouping:uses:modul";
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-modul-test {
13         leaf leaf-grouping-modul-test {
14             type string;
15         }
16         leaf leaf-grouping-modul-test2 {
17             type uint8;
18         }
19     }
20     
21 //grouping in MODUL     
22     uses grouping-modul-test;
23 }