Added support for resolving augmentations.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-generator-impl / src / test / resources / augment-test-models / augment-network-link-attributes@2013-05-03.yang
1 module augment-network-link-attributes {
2         yang-version 1;
3     namespace "urn:model:augment:network:link:attributes";
4     prefix "tp";
5
6     import abstract-topology {
7         prefix "at";
8         revision-date 2013-02-08;
9     }
10
11     organization "OPEN DAYLIGHT";
12     contact "http://www.opendaylight.org/";
13
14     revision "2013-05-03" {
15         reference "http://www.opendaylight.org/";
16     }
17
18     augment "at:topology/at:network-links/at:network-link/at:attributes" {
19         leaf longitude {
20             type decimal64 {    
21                 fraction-digits 2;
22             }
23         }
24
25         leaf latitude {
26             type decimal64 {    
27                 fraction-digits 2;
28             }
29         }
30     }
31 }