Checkstyle compliant src/main|test/resources
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / test / resources / test-rpc.yang
1 module test-rpc-service {
2     yang-version 1;
3     namespace "urn:test";
4     prefix "rpc";
5
6     revision "2014-08-28" {
7         description
8             "Initial revision";
9     }
10
11     rpc test-rpc {
12         input {
13             leaf input-data {
14                 type string;
15             }
16         }
17
18         output {
19             leaf output-data {
20                 type string;
21             }
22         }
23     }
24 }