Merge "BUG-190 Simplify reconnect logic in protocol-framework."
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / resources / odl-datastore-test-notification.yang
1 module odl-datastore-test-notification {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:notification-test";
4     prefix "notification-test-using-family-model";
5
6     revision "2014-04-17" {
7         description "Family structure created on ";
8     }
9
10     container family {
11         leaf desc {
12             type string;
13         }
14         list children {
15             key child-number;
16             leaf child-number {
17                 type uint16;
18             }
19             leaf child-name {
20                 type string;
21             }
22            list grand-children {
23                 key grand-child-number;
24                 leaf grand-child-number {
25                     type uint16;
26                 }
27                 leaf grand-child-name {
28                     type string;
29                 }
30             }
31         }
32     }
33 }