BUG-3553 Introduce custom java.security config file
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / json-to-cnsn / identityref / identityref-module.yang
1 module identityref-module {
2   namespace "identityref:module";  
3
4   prefix "iderefmod";
5   
6   import identity-module {prefix idemo; revision-date 2013-12-2;}
7    
8   revision 2013-12-2 {    
9   }
10   
11   identity iden_local {
12   }
13   
14         container cont {
15            container cont1 {
16                 leaf lf11 {
17                         type identityref {
18                                 base "idemo:iden";
19                         }
20                 }
21                 leaf lf12 {
22                         type identityref {
23                                 base "iden_local";
24                         }
25                 }
26                 leaf lf13 {
27                         type identityref {
28                                 base "iden_local";
29                         }
30                 }
31                 leaf lf14 {
32                         type identityref {
33                                 base "iden_local";
34                         }
35                 }
36                 }
37         }
38           
39 }