Added getParent() method to DataSchemaNode and DataNodeContainer. Fixed Bugs.
[yangtools.git] / code-generator / binding-java-api-generator / src / test / resources / compilation / augment-of-augment / baz.yang
1 module baz {
2     yang-version 1;
3     namespace "urn:opendaylight:baz";
4     prefix "baz";
5
6     import foo { prefix fo; revision-date 2013-10-08; }
7     import bar { prefix br; revision-date 2013-10-08; }
8
9     revision "2013-10-08" {
10     }
11
12     augment "/fo:update/fo:path-attributes/br:mp-unreach-nlri/br:withdrawn-routes/br:destination-type" {
13         case destination-linkstate {
14             uses linkstate-destination;
15         }
16     }
17
18     grouping linkstate-destination {
19         leaf nlri-type {
20             type string;
21         }
22         leaf protocol-id {
23             type string;
24         }
25     }
26
27 }