- restconf client implementation using RuntimeGeneratedMappingService
[yangtools.git] / restconf / restconf-test-service / src / main / yang / remoteTest.yang
1 module test-module {
2
3         yang-version 1;
4     namespace "urn:opendaylight:params:xml:ns:yangtools:restconf";
5     prefix "remote-test";
6
7
8     organization "Cisco Systems, Inc.";
9     contact "Martin Bobak <mbobak@cisco.com>";
10
11     description
12           "This is just test module for restconf-client-impl testing.
13
14            Copyright (c)2013 Cisco Systems, Inc. All rights reserved.
15
16            This program and the accompanying materials are made available
17            under the terms of the Eclipse Public License v1.0 which
18            accompanies this distribution, and is available at
19            http://www.eclipse.org/legal/epl-v10.html";
20
21     revision "2014-01-14" {
22         description
23             "Initial revision";
24     }
25
26
27     rpc test-methodA {
28         input {
29             leaf string-value {
30                 type string;
31             }
32          }
33          output {
34             leaf string-value{
35                 type string;
36             }
37          }
38     }
39
40 }