Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / choice-case-type-test-models / choice-monitoring@2013-07-01.yang
1 module choice-monitoring {
2   yang-version 1;
3   namespace "urn:ietf:params:xml:ns:yang:choice-monitoring";
4   prefix "ncm";
5
6   revision 2013-07-01 {
7   }
8
9   container netconf-state {
10     config false;
11
12     container datastores {
13       list datastore {
14         key name;
15
16         leaf name {
17           type string;
18         }
19         container locks {
20           choice lock-type {
21
22             case original-lock {
23             }
24             
25           }
26         }
27       }
28     }
29   }
30 }