Merge "Package names for enclosed Types of TOs were changed to fully qualified. Fully...
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / test / resources / context-augment-test / test4.yang
1 module test4 {
2
3     yang-version 1;
4     namespace "urn:simple.demo.test4";
5     prefix "t4";
6
7     organization "opendaylight";
8     contact "WILL-BE-DEFINED-LATER";
9         revision 2013-06-18 {
10     }
11
12     container interfaces {
13          list ifEntry {
14              key "ifIndex";
15              leaf ifIndex {
16                  type uint32;
17                  units minutes;
18              }
19              leaf ifMtu {
20                  type int32;
21              }
22              min-elements 1;
23              max-elements 11;
24          }
25     }
26
27 }