When a node is going down, remove edges in both directions associated with the node.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-parser-impl / src / test / resources / context-test / test1.yang
1 module test1 {
2
3     yang-version 1;
4     namespace "urn:simple.demo.test1";
5     prefix "t1";
6     
7     import ietf-inet-types {
8         prefix "inet";
9         revision-date 2010-09-24;
10     }
11     
12     organization "opendaylight";
13     contact "WILL-BE-DEFINED-LATER";
14         revision 2013-06-18 {
15     }
16     
17     typedef dscp-ext {
18         type inet:dscp {
19             range "min..max";
20         }
21     }
22
23     leaf id {
24         type inet:port-number {
25             range "0..65536";
26         }
27     }
28
29 }