Added uses to extends list.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-generator-impl / src / test / resources / uses-of-grouping / uses-of-grouping-notification.yang
1 module grouping_uses_notification {
2     
3     namespace "urn:grouping:uses:notification";
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-notification-test {
13         container container-grouping-notification-test {
14             leaf leaf-container-grouping-notification-test {
15                 type uint32;
16             }
17         }
18         leaf-list leaffllist-grouping-notification-test {
19             type string;
20         }
21     }
22
23 //grouping in NOTIFICATION
24     notification notification-test {
25         leaf leaf-notification-test {
26             type string;
27         }
28         uses grouping-notification-test;
29     }
30 }