Delete restconf
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / xml-to-cnsn / leafref / leafref-module
diff --git a/opendaylight/md-sal/sal-rest-connector/src/test/resources/xml-to-cnsn/leafref/leafref-module b/opendaylight/md-sal/sal-rest-connector/src/test/resources/xml-to-cnsn/leafref/leafref-module
deleted file mode 100644 (file)
index 6fe770b..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-module leafref-module {
-  namespace "leafref:module";
-
-  prefix "lfrfmo";
-  revision 2013-11-18 {
-  }
-
-  identity base {}
-
-    container cont {
-        leaf lf1 {
-            type int32;
-        }
-        leaf lf2 {
-            type leafref {
-                path "/cont/lf1";
-            }
-        }
-
-        leaf lf-ident {
-            type identityref {
-                base "lfrfmo:base";
-            }
-        }
-
-        leaf lf-ident-ref {
-            type leafref {
-                path "/cont/lf-ident";
-            }
-        }
-
-        leaf lf-ident-ref-relative {
-            type leafref {
-                path "../lf-ident";
-            }
-        }
-
-        leaf lf-ident-ref-relative-cnd {
-            type leafref {
-                path "/lfrfmo:cont/lfrfmo:lis[lfrfmo:id='abc']/lf-ident-ref";
-            }
-        }
-
-
-        list lis {
-            key "id";
-
-            leaf id {
-                type string;
-            }
-
-            leaf lf-ident-ref {
-                type leafref {
-                    path "/cont/lf-ident";
-                }
-            }
-        }
-
-    }
-
-}
\ No newline at end of file