Merge "Add filtering capability to config.ini in order to reference logging bridge...
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / full-versions / test-module / test-module
1 module test-module {
2   namespace "test:module";
3   prefix tstmod;
4
5   revision 2014-01-09 {
6   }
7   
8   container interfaces {
9     container class {
10         leaf name {
11             type string;
12         }
13         leaf address {
14             type string;
15         }
16         leaf email {
17             type string;
18         }
19     }
20   }
21   
22   container cont {
23     container cont1 {
24         leaf lf11 {
25             type string;
26         }
27         leaf lf12 {
28             type string;
29         }
30     }
31     list lst1 {
32         key "lf11";
33         leaf lf11 {
34             type string;
35         }
36     }
37   }   
38   
39   
40   rpc rpc-test {
41     input {
42       container cont {
43         container cont1 {
44             leaf lf11 {
45                 type string;
46             }
47             leaf lf12 {
48                 type string;
49             }
50         }
51       }    
52     }
53     output {
54         container cont-output {
55         }
56     } 
57   
58   }
59   
60   
61  
62
63 }