Teach AbstractGet how to transform MapNodes
[netconf.git] / netconf / mdsal-netconf-connector / src / test / resources / yang / simple-list.yang
1 module simple-list {
2     namespace "urn:dummy:list";
3     prefix "list-0";
4     revision "2019-08-21";
5
6     list user {
7              key "name";
8              config true;
9              description "This is a list of users in the system.";
10
11              leaf name {
12                  type string;
13              }
14      }
15
16 }