Delete netconf
[controller.git] / opendaylight / netconf / mdsal-netconf-connector / src / test / resources / yang / mdsal-netconf-mapping-test.yang
diff --git a/opendaylight/netconf/mdsal-netconf-connector/src/test/resources/yang/mdsal-netconf-mapping-test.yang b/opendaylight/netconf/mdsal-netconf-connector/src/test/resources/yang/mdsal-netconf-mapping-test.yang
deleted file mode 100644 (file)
index 399ae4b..0000000
+++ /dev/null
@@ -1,143 +0,0 @@
-module config {
-    yang-version 1;
-    namespace "urn:opendaylight:mdsal:mapping:test";
-    prefix "map";
-
-    revision "2015-02-26";
-
-    container mapping-nodes {
-
-        list mapping-node{
-            key "id";
-            leaf id {
-                type string;
-            }
-
-            leaf content {
-                type string;
-            }
-        }
-    }
-
-    container top {
-
-        container users {
-
-            list user {
-
-                key "name";
-
-                leaf name {
-                    type string;
-                }
-
-                leaf type {
-                    type string;
-                }
-
-                leaf full-name {
-                    type string;
-                }
-
-                container company-info {
-
-                    leaf dept {
-                        type string;
-                    }
-
-                    leaf id {
-                        type string;
-                    }
-                }
-            }
-        }
-
-        container modules {
-
-            list module {
-
-                key "id";
-
-                leaf id {
-                    type string;
-                }
-
-                leaf type {
-                    type string;
-                }
-
-                leaf desc {
-                    type string;
-                }
-            }
-        }
-
-        choice choice-node {
-            case a {
-                leaf text {
-                    type string;
-                }
-            }
-
-            case b {
-                container text-cont {
-                    leaf text {
-                        type string;
-                    }
-                }
-            }
-        }
-
-    } //top
-
-    augment "/map:top/map:choice-node" {
-        case c {
-            leaf augmented-case {
-                type string;
-            }
-        }
-
-        case d {
-            container choice-wrapper {
-                choice inner-choice {
-                    case ia {
-                        leaf text {
-                            type string;
-                        }
-                    }
-
-                    case ib {
-                        leaf text2 {
-                            type string;
-                        }
-                    }
-                }
-            }
-        }
-    }
-
-    augment "/map:top/map:modules/" {
-        container augmented-container{
-            leaf identifier {
-                type string;
-            }
-        }
-    }
-
-    augment "/map:top" {
-        container mid-level {
-            container low-level {
-                container lowest-level {
-                    leaf-list note {
-                        type string;
-                    }
-                }
-            }
-            container low-level2 {
-                leaf-list note {
-                    type string;
-                }
-            }
-        }
-    }
-}
\ No newline at end of file