Delete netconf
[controller.git] / opendaylight / netconf / mdsal-netconf-connector / src / test / resources / yang / mdsal-netconf-rpc-test.yang
diff --git a/opendaylight/netconf/mdsal-netconf-connector/src/test/resources/yang/mdsal-netconf-rpc-test.yang b/opendaylight/netconf/mdsal-netconf-connector/src/test/resources/yang/mdsal-netconf-rpc-test.yang
deleted file mode 100644 (file)
index 6a59cdc..0000000
+++ /dev/null
@@ -1,90 +0,0 @@
-module rpc-test {
-    yang-version 1;
-    namespace "urn:opendaylight:mdsal:mapping:rpc:test";
-    prefix "rpc";
-
-    rpc void-input-output-rpc {
-
-    }
-
-    rpc void-output-rpc {
-        input {
-            leaf test-string {
-                type string;
-            }
-
-            leaf test-string2 {
-                type string;
-            }
-        }
-    }
-
-    rpc nonvoid-rpc {
-        input {
-            leaf test-string {
-                type string;
-            }
-
-            leaf test-string2 {
-                type string;
-            }
-        }
-
-        output {
-            leaf test-string {
-                type string;
-            }
-
-            leaf test-string2 {
-                type string;
-            }
-        }
-    }
-
-    rpc container-rpc {
-        input {
-            container cont1 {
-                leaf test-string {
-                    type string;
-                }
-
-                leaf test-string2 {
-                    type string;
-                }
-            }
-
-            container cont2 {
-                leaf test-string {
-                    type string;
-                }
-
-                leaf test-string2 {
-                    type string;
-                }
-            }
-        }
-
-        output {
-            container cont1 {
-                leaf test-string {
-                    type string;
-                }
-
-                leaf test-string2 {
-                    type string;
-                }
-            }
-
-            container cont2 {
-                leaf test-string {
-                    type string;
-                }
-
-                leaf test-string2 {
-                    type string;
-                }
-            }
-        }
-    }
-}
-