Remove unused model imports
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / model / src / main / yang / car-people.yang
index 899724658f2202f1e30c0d795d70fe294f7e95b0..f1a47cc71684a50862ee2ace16c95fd23866ab38 100644 (file)
@@ -1,42 +1,40 @@
 module car-people {
+  yang-version 1;
 
-    yang-version 1;
+  namespace "urn:opendaylight:params:xml:ns:yang:controller:config:sal-clustering-it:car-people";
 
-    namespace "urn:opendaylight:params:xml:ns:yang:controller:config:sal-clustering-it:car-people";
+  prefix car;
 
-    prefix car;
+  import car { prefix "c"; revision-date 2014-08-18; }
+  import people { prefix "people"; revision-date 2014-08-18; }
 
-         import ietf-inet-types { prefix "inet"; revision-date 2010-09-24; }
-         import car { prefix "c"; revision-date 2014-08-18; }
-         import people { prefix "people"; revision-date 2014-08-18; }
+  organization "Netconf Central";
 
-    organization "Netconf Central";
+  contact
+    "Harman Singh <harmasin@cisco.com>";
 
-    contact
-      "Harman Singh <harmasin@cisco.com>";
+  description
+    "YANG model for car for test application";
 
+  revision "2014-08-18" {
     description
-      "YANG model for car for test application";
+      "Clustering sample app";
+  }
 
-    revision "2014-08-18" {
-      description
-        "Clustering sample app";
-    }
-
-    container car-people {
-      description
-       "Top-level container for all people car map";
+  container car-people {
+    description
+     "Top-level container for all people car map";
 
-      list car-person {
-        key "car-id person-id";
-        description "A mapping of cars and people.";
-        leaf car-id {
-          type c:car-id;
-        }
+    list car-person {
+      key "car-id person-id";
+      description "A mapping of cars and people.";
+      leaf car-id {
+        type c:car-id;
+      }
 
-        leaf person-id {
-          type people:person-id;
-        }
+      leaf person-id {
+        type people:person-id;
       }
     }
-}
\ No newline at end of file
+  }
+}