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-augment-test / test3.yang
1 module test3 {
2
3     yang-version 1;
4     namespace "urn:simple.demo.test3";
5     prefix "t3";
6
7     import test4 {
8         prefix "t4";
9         revision-date 2013-06-18;
10     }
11
12     organization "opendaylight";
13     contact "WILL-BE-DEFINED-LATER";
14         revision 2013-06-18 {
15     }
16
17     augment "/t4:interfaces/t4:ifEntry" {
18         when "if:ifType='ds0'";
19         container augment-holder {
20             description "Description for augment holder";
21         }
22     }
23
24 }