Fixup checkstyle
[controller.git] / opendaylight / md-sal / sal-test-model / src / main / yang / opendaylight-test-bug-3090.yang
1 module opendaylight-test-bug-3090 {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:opendaylight-test-bug-3090";
4     prefix "rpc";
5
6     description
7         "Test model for Bug 3090 - An AsyncDataChangeEvent instance's getCreatedData() method can't get data if list has multi-key";
8
9     revision "2016-01-01" {
10         description
11             "Bug 3090";
12     }
13
14     container root {
15         list list-in-root {
16             key "leaf-c leaf-a leaf-b";
17             leaf leaf-a {
18                 type string;
19             }
20             leaf leaf-b {
21                 type string;
22             }
23             leaf leaf-c {
24                 type string;
25             }
26         }
27     }
28 }