Remove JournalWriter.getLastEntry()
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / test / resources / odl-ctlr1923.yang
1 module odl-ctrl1923 {
2   yang-version 1;
3   namespace "urn:odl-ctlr1923";
4   prefix "ctrl1923";
5
6   description "Sodium -> Magnesium uint translation";
7
8   grouping grp {
9     leaf a { type int8; }
10     leaf b { type int16; }
11     leaf c { type int32; }
12     leaf d { type int64; }
13     leaf e { type uint8; }
14     leaf f { type uint16; }
15     leaf g { type uint32; }
16     leaf h { type uint64; }
17   }
18
19   container cont {
20     uses grp;
21   }
22
23   list lst {
24     key "a b c d e f g h";
25     uses grp;
26   }
27
28   leaf-list lf-lst8 {
29     type uint8;
30   }
31
32   leaf-list lf-lst16 {
33     type uint16;
34   }
35
36   leaf-list lf-lst32 {
37     type uint32;
38   }
39
40   leaf-list lf-lst64 {
41     type uint64;
42   }
43 }