Cleaned up Java Binding code from YANG Tools
[mdsal.git] / code-generator / binding-generator-impl / src / test / resources / simple-container-demo.yang
diff --git a/code-generator/binding-generator-impl/src/test/resources/simple-container-demo.yang b/code-generator/binding-generator-impl/src/test/resources/simple-container-demo.yang
deleted file mode 100644 (file)
index 3962274..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-module simple-container-demo {
-       yang-version 1;
-    namespace "urn:simple.container.demo";
-    prefix "scd";
-
-    organization "OPEN DAYLIGHT";
-    contact "http://www.opendaylight.org/";
-
-    description "
-        This module contains the definitions of elements that creates network 
-        topology i.e. definition of network nodes and links. This module is
-        not designed to be used solely for network representation. This module
-        SHOULD be used as base module in defining the network topology.
-    ";
-
-    revision "2012-02-08" {
-        reference " WILL BE DEFINED LATER";
-    }
-
-    revision "2010-02-08" {
-        reference " WILL BE DEFINED LATER";
-    }
-
-    container simple-container {
-
-       leaf foo {
-               type int32;
-       }
-
-       leaf bar {
-               type string;
-               config true;
-       }
-
-       container nested-container {
-               leaf foo {
-                       type uint8;
-               }
-
-               leaf bar {
-                       type string;
-               }
-       }
-    }
-}
\ No newline at end of file