Cleaned up Java Binding code from YANG Tools
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / identityref.yang
1 module module-identityref {
2
3     namespace "urn:identityref:module";
4     prefix "sbd";
5
6     organization "OPEN DAYLIGHT";
7     contact "http://www.opendaylight.org/";
8
9     revision 2013-11-09 {
10     }
11
12     identity some-identity {
13     }
14
15     leaf lf {
16         type identityref {
17             base "some-identity";
18         }
19     }
20 }