Created sal-clustering-commons and moved
[controller.git] / opendaylight / md-sal / sal-protocolbuffer-encoding / src / test / resources / odl-datastore-test.yang
diff --git a/opendaylight/md-sal/sal-protocolbuffer-encoding/src/test/resources/odl-datastore-test.yang b/opendaylight/md-sal/sal-protocolbuffer-encoding/src/test/resources/odl-datastore-test.yang
deleted file mode 100644 (file)
index e4eca7b..0000000
+++ /dev/null
@@ -1,91 +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.";
-    }
-
-    identity feature-capability {
-    }
-
-    container test {
-        leaf desc {
-            type string;
-        }
-        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;
-                }
-            }
-        }
-
-        leaf-list shoe {
-            type string;
-        }
-
-        leaf-list number {
-            type uint8;
-        }
-
-        leaf pointer {
-            type leafref {
-                path "/network-topology/topology/node/termination-point/tp-id";
-            }
-        }
-
-        leaf some-ref {
-            type instance-identifier;
-        }
-
-        leaf myidentity {
-            type identityref {
-                base feature-capability;
-            }
-        }
-
-        container switch-features {
-            leaf-list capability {
-                type identityref {
-                    base feature-capability;
-                }
-
-            }
-        }
-
-        list augmented-list {
-            key id;
-
-            leaf id {
-                type uint8;
-            }
-        }
-
-
-    }
-}