Proxy DOMRpcRouter to the mdsal implementation
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / test / resources / odl-datastore-test.yang
index a0bf157e356a9085af4ca2a084f99cafa3b500d8..f7b960e9f995b448d5b655fb85cad5067a8397e4 100644 (file)
@@ -2,7 +2,7 @@ module odl-datastore-test {
     yang-version 1;
     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test";
     prefix "store-test";
-    
+
     revision "2014-03-13" {
         description "Initial revision.";
     }
@@ -44,4 +44,27 @@ module odl-datastore-test {
 
     container test2 {
     }
+
+    rpc test-rpc {
+        input {
+            leaf input-leaf {
+                type string;
+            }
+        }
+
+        output {
+            leaf output-leaf {
+                type string;
+            }
+        }
+    }
+
+    rpc test-rpc-no-input {
+    }
+
+    notification test-notification {
+        leaf value-leaf {
+            type string;
+        }
+    }
 }