Remove netconf-node-inventory 55/73655/2
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 2 Jul 2018 15:10:38 +0000 (17:10 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Tue, 3 Jul 2018 08:11:37 +0000 (10:11 +0200)
This is a netconf-specific augmentation, remove it from controller.

Change-Id: I34ddcb6bdf70378d85cf8b29e5851b87623c9572
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
opendaylight/model/model-inventory/src/main/yang/netconf-node-inventory.yang [deleted file]

diff --git a/opendaylight/model/model-inventory/src/main/yang/netconf-node-inventory.yang b/opendaylight/model/model-inventory/src/main/yang/netconf-node-inventory.yang
deleted file mode 100644 (file)
index 45fbd42..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-module netconf-node-inventory {
-    namespace "urn:opendaylight:netconf-node-inventory";
-    prefix "netinv";
-
-    import opendaylight-inventory { prefix inv; revision-date "2013-08-19";}
-    import yang-ext {prefix ext; revision-date "2013-07-09";}
-
-    revision "2014-01-08" {
-        description "Initial revision of Inventory model";
-    }
-
-    grouping netconf-node-fields {
-        status deprecated;
-        leaf connected {
-            type boolean;
-        }
-
-        leaf-list initial-capability {
-            type string;
-        }
-
-        leaf-list current-capability {
-            type string;
-        }
-
-        container pass-through {
-            when "../connected = true";
-            description
-                "When the underlying node is connected, its NETCONF context
-                is available verbatim under this container through the
-                mount extension.";
-        }
-    }
-
-    augment /inv:nodes/inv:node {
-        ext:augment-identifier "netconf-node";
-        status deprecated;
-        uses netconf-node-fields;
-    }
-}