Moved non MD-SAL models outside of MD-SAL folder
[controller.git] / opendaylight / md-sal / model / model-inventory / src / main / yang / netconf-node-inventory.yang
diff --git a/opendaylight/md-sal/model/model-inventory/src/main/yang/netconf-node-inventory.yang b/opendaylight/md-sal/model/model-inventory/src/main/yang/netconf-node-inventory.yang
deleted file mode 100644 (file)
index e7ac38c..0000000
+++ /dev/null
@@ -1,39 +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 {
-        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";
-        
-        uses netconf-node-fields;
-    }
-}