Projects moved under correct parent.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-parser-impl / src / test / resources / context-test / test3.yang
1 module test3 {
2
3     yang-version 1;
4     namespace "urn:simple.demo.test3";
5     prefix "t3";
6     
7     import custom-types-test {
8         prefix "custom";
9     }
10     
11     organization "opendaylight";
12     contact "WILL-BE-DEFINED-LATER";
13         revision 2013-06-18 {
14     }
15
16     identity pt {
17         base custom:service-type;
18     }
19     
20     container network {
21         custom:mountpoint point {
22             mnt:target-ref target;
23         }
24         
25         description "network-description";
26         reference "network-reference";
27         status obsolete;
28         config true;
29         presence "some presence text";
30     }
31
32 }