Cleaned up Java Binding code from YANG Tools
[mdsal.git] / code-generator / binding-generator-impl / src / test / resources / augment-relative-xpath-models / abstract-topology@2013-02-08.yang
diff --git a/code-generator/binding-generator-impl/src/test/resources/augment-relative-xpath-models/abstract-topology@2013-02-08.yang b/code-generator/binding-generator-impl/src/test/resources/augment-relative-xpath-models/abstract-topology@2013-02-08.yang
deleted file mode 100644 (file)
index 7fe9e74..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-module abstract-topology {
-    yang-version 1;
-    namespace "urn:model:abstract:topology";
-    prefix "tp";
-
-    revision "2013-02-08" {
-    }
-
-    typedef node-id-ref {
-        type leafref {
-            path "/tp:topology/tp:network-nodes/tp:network-node/tp:node-id";
-        }
-    }
-
-    typedef link-id-ref {
-        type leafref {
-            path "/tp:topology/tp:network-links/tp:network-link/tp:link-id";
-        }
-    }
-
-    typedef uri {
-        type string;
-    }
-
-    container topology {
-
-        leaf topology-id {
-            type uri;
-        }
-
-        container network-nodes {
-            list network-node {
-                key "node-id";
-
-                leaf node-id {
-                    type uri;
-                }
-
-                container attributes {
-                }
-            }
-        }
-
-        container network-links {
-            list network-link {
-                key "link-id";
-
-                leaf link-id {
-                    type uri;
-                    description "";
-                }
-
-                container source-node {
-                    leaf id {
-                        type node-id-ref;
-                    }
-                }
-
-                container destination-node {
-                    leaf id {
-                        type node-id-ref;
-                    }
-                }
-
-                container attributes {
-                }
-            }
-        }
-    }
-
-}