32210d9fb2b36e9c74c41321ba1422d1e8bc36ba
[mdsal.git] / binding / mdsal-binding-test-model / src / main / yang / actions.yang
1 module actions {
2     yang-version 1.1;
3     prefix act;
4     namespace "urn:odl:actions";
5
6     container cont {
7         action foo {
8             input {
9                 leaf xyzzy {
10                     type string;
11                 }
12             }
13         }
14     }
15
16     grouping grp {
17         action bar {
18             output {
19                 leaf xyzzy {
20                     type string;
21                 }
22             }
23         }
24     }
25
26     grouping other {
27         uses grp;
28     }
29
30     container grpcont {
31         uses grp;
32     }
33
34     container othercont {
35         uses other;
36     }
37 }
38