Remove deprecated MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / test / resources / odl-datastore-test.yang
diff --git a/opendaylight/md-sal/sal-dom-broker/src/test/resources/odl-datastore-test.yang b/opendaylight/md-sal/sal-dom-broker/src/test/resources/odl-datastore-test.yang
deleted file mode 100644 (file)
index f7b960e..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-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.";
-    }
-
-    container test {
-        presence "needs to be present when empty";
-
-        list outer-list {
-            key id;
-            leaf id {
-                type uint16;
-            }
-            choice outer-choice {
-                case one {
-                    leaf one {
-                        type string;
-                    }
-                }
-                case two-three {
-                    leaf two {
-                        type string;
-                    }
-                    leaf three {
-                        type string;
-                    }
-               }
-           }
-           list inner-list {
-                key name;
-                leaf name {
-                    type string;
-                }
-                leaf value {
-                    type string;
-                }
-            }
-        }
-    }
-
-    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;
-        }
-    }
-}