Fix: removed tabs from yang files. 51/4451/1
authorMilos Fabian <milfabia@cisco.com>
Mon, 20 Jan 2014 14:50:21 +0000 (15:50 +0100)
committerMilos Fabian <milfabia@cisco.com>
Mon, 20 Jan 2014 15:41:18 +0000 (16:41 +0100)
Signed-off-by: Milos Fabian <milfabia@cisco.com>
Change-Id: I1f6fcba1c5dfc3eddb53adc89950ed20795dddfb

opendaylight/config/logback-config/src/main/yang/config-logging.yang
opendaylight/config/netty-config-api/src/main/yang/netty.yang
opendaylight/config/netty-event-executor-config/src/main/yang/netty-event-executor.yang
opendaylight/config/netty-threadgroup-config/src/main/yang/netty-threadgroup.yang
opendaylight/config/netty-timer-config/src/main/yang/netty-timer.yang
opendaylight/config/threadpool-config-api/src/main/yang/threadpool.yang
opendaylight/config/threadpool-config-impl/src/main/yang/threadpool-impl-flexible.yang
opendaylight/config/threadpool-config-impl/src/main/yang/threadpool-impl-scheduled.yang

index 3b28b574696683540391dd53ab041b0b40dd7ebb..477876c66979dd6d3a0db8ce224d26174499ab5f 100644 (file)
@@ -32,7 +32,7 @@ module config-logging {
             when "/config:modules/config:module/config:type = 'logback'";
 
             list file-appenders {
-               leaf append {
+                leaf append {
                     type boolean;
                     mandatory false;
                 }
@@ -41,12 +41,12 @@ module config-logging {
                     type string;
                     mandatory true;
                 }
-                
+
                 leaf encoder-pattern {
                     type string;
                     mandatory true;
                 }
-                
+
                 leaf name {
                     type string;
                     mandatory true;
@@ -54,7 +54,7 @@ module config-logging {
                 key name;
                 config:java-name-prefix FileAppenderTO;
             }
-            
+
             list rolling-appenders {
                 leaf append {
                     type boolean;
@@ -96,17 +96,17 @@ module config-logging {
                     type string;
                     mandatory true;
                 }
-                
+
                 leaf rolling-policy-type {
                     type string;
                     mandatory true;
                 }
-                
+
                 leaf max-history {
                     type int32;
                     mandatory true;
                 }
-                
+
                 leaf clean-history-on-start {
                     type boolean;
                     default false;
index 7f7a3ff4ce83e7b5580a78455dce7943e9efac4c..7cac5ad5bc6202265be39f385b8749d61bc77e62 100644 (file)
@@ -1,14 +1,14 @@
 // vi: set smarttab et sw=4 tabstop=4:
 module netty {
-       yang-version 1;
-       namespace "urn:opendaylight:params:xml:ns:yang:controller:netty";
-       prefix "netty";
+    yang-version 1;
+    namespace "urn:opendaylight:params:xml:ns:yang:controller:netty";
+    prefix "netty";
 
-       import config { prefix config; revision-date 2013-04-05; }
+    import config { prefix config; revision-date 2013-04-05; }
 
-       organization "Cisco Systems, Inc.";
+    organization "Cisco Systems, Inc.";
 
-       contact "Milos Fabian <milfabia@cisco.com>";
+    contact "Milos Fabian <milfabia@cisco.com>";
 
     description
         "This module contains the base YANG definitions for
@@ -17,15 +17,15 @@ module netty {
         Copyright (c)2013 Cisco Systems, Inc. All rights reserved.;
 
         This program and the accompanying materials are made available
-               under the terms of the Eclipse Public License v1.0 which
-               accompanies this distribution, and is available at
-               http://www.eclipse.org/legal/epl-v10.html";
+        under the terms of the Eclipse Public License v1.0 which
+        accompanies this distribution, and is available at
+        http://www.eclipse.org/legal/epl-v10.html";
 
     revision "2013-11-19" {
         description
             "Initial revision.";
     }
-    
+
     identity netty-threadgroup {
         description
             "Configuration wrapper around netty's threadgroup";
@@ -33,7 +33,7 @@ module netty {
         base "config:service-type";
         config:java-class "io.netty.channel.EventLoopGroup";
     }
-    
+
     identity netty-event-executor {
         description
             "Configuration wrapper around netty's event executor";
@@ -41,12 +41,12 @@ module netty {
         base "config:service-type";
         config:java-class "io.netty.util.concurrent.EventExecutor";
     }
-    
+
     identity netty-timer {
         description
             "Configuration wrapper around netty's timer";
 
         base "config:service-type";
-        config:java-class "io.netty.util.Timer";       
+        config:java-class "io.netty.util.Timer";
     }
 }
\ No newline at end of file
index 16e5c07356df97c6af8baf2f6e7eb80ac7d123f4..e9d1da3f2dd6de1f0c80701a68b21227fadd8c72 100644 (file)
@@ -1,7 +1,7 @@
 // vi: set smarttab et sw=4 tabstop=4:
 module netty-event-executor {
     yang-version 1;
-       namespace "urn:opendaylight:params:xml:ns:yang:controller:netty:eventexecutor";
+    namespace "urn:opendaylight:params:xml:ns:yang:controller:netty:eventexecutor";
     prefix "netty-ee";
 
     import config { prefix config; revision-date 2013-04-05; }
@@ -16,17 +16,17 @@ module netty-event-executor {
          netty event executor implementation.
 
         Copyright (c)2013 Cisco Systems, Inc. All rights reserved.;
-        
+
         This program and the accompanying materials are made available
-               under the terms of the Eclipse Public License v1.0 which
-               accompanies this distribution, and is available at
-               http://www.eclipse.org/legal/epl-v10.html";
+        under the terms of the Eclipse Public License v1.0 which
+        accompanies this distribution, and is available at
+        http://www.eclipse.org/legal/epl-v10.html";
 
     revision "2013-11-12" {
         description
             "Initial revision";
     }
-    
+
     identity netty-global-event-executor {
         base config:module-type;
         config:provided-service netty:netty-event-executor;
index e648c5328a71349f9261efa82f8c8ef02a798a58..71cbff4bcd136167dbf64afff8f741000965de8b 100644 (file)
@@ -1,7 +1,7 @@
 // vi: set smarttab et sw=4 tabstop=4:
 module threadgroup {
     yang-version 1;
-       namespace "urn:opendaylight:params:xml:ns:yang:controller:netty:threadgroup";
+    namespace "urn:opendaylight:params:xml:ns:yang:controller:netty:threadgroup";
     prefix "netty-th";
 
     import config { prefix config; revision-date 2013-04-05; }
@@ -49,5 +49,4 @@ module threadgroup {
         }
     }
 
-
 }
index b53b13f5a864c8be42f5c12e838a34d636685cc0..e622be39c7f1d944cb0a15ae4bc4e5343f3f1559 100644 (file)
@@ -1,7 +1,7 @@
 // vi: set smarttab et sw=4 tabstop=4:
 module netty-timer {
     yang-version 1;
-       namespace "urn:opendaylight:params:xml:ns:yang:controller:netty:timer";
+    namespace "urn:opendaylight:params:xml:ns:yang:controller:netty:timer";
     prefix "netty-timer";
 
     import config { prefix config; revision-date 2013-04-05; }
@@ -17,17 +17,17 @@ module netty-timer {
          netty timer implementation.
 
         Copyright (c)2013 Cisco Systems, Inc. All rights reserved.;
-        
+
         This program and the accompanying materials are made available
-               under the terms of the Eclipse Public License v1.0 which
-               accompanies this distribution, and is available at
-               http://www.eclipse.org/legal/epl-v10.html";
+        under the terms of the Eclipse Public License v1.0 which
+        accompanies this distribution, and is available at
+        http://www.eclipse.org/legal/epl-v10.html";
 
     revision "2013-11-19" {
         description
             "Initial revision";
     }
-    
+
     identity netty-hashed-wheel-timer {
         base config:module-type;
         config:provided-service netty:netty-timer;
@@ -37,23 +37,23 @@ module netty-timer {
     augment "/config:modules/config:module/config:configuration" {
         case netty-hashed-wheel-timer {
             when "/config:modules/config:module/config:type = 'netty-hashed-wheel-timer'";
-            
+
             leaf tick-duration {
                 type uint32;
             }
-            
+
             leaf ticks-per-wheel {
                 type uint16;
             }
-            
-                       container thread-factory {
-                               uses config:service-ref {
-                                       refine type {
-                                               mandatory false;
-                                               config:required-identity th:threadfactory;
-                                       }
-                               }
-                       }
+
+            container thread-factory {
+                uses config:service-ref {
+                    refine type {
+                        mandatory false;
+                        config:required-identity th:threadfactory;
+                    }
+                }
+            }
         }
     }
 }
\ No newline at end of file
index 8f3064822be319dfee6fd7c7061c8bee14db268f..4c34513591f51314769c89c8eaa3d409c0aea6a8 100644 (file)
@@ -1,14 +1,14 @@
 // vi: set smarttab et sw=4 tabstop=4:
 module threadpool {
-       yang-version 1;
-       namespace "urn:opendaylight:params:xml:ns:yang:controller:threadpool";
-       prefix "th";
+    yang-version 1;
+    namespace "urn:opendaylight:params:xml:ns:yang:controller:threadpool";
+    prefix "th";
 
-       import config { prefix config; revision-date 2013-04-05; }
+    import config { prefix config; revision-date 2013-04-05; }
 
-       organization "Cisco Systems, Inc.";
+    organization "Cisco Systems, Inc.";
 
-       contact "Robert Varga <rovarga@cisco.com>";
+    contact "Robert Varga <rovarga@cisco.com>";
 
     description
         "This module contains the base YANG definitions for
@@ -17,9 +17,9 @@ module threadpool {
         Copyright (c)2013 Cisco Systems, Inc. All rights reserved.;
 
         This program and the accompanying materials are made available
-               under the terms of the Eclipse Public License v1.0 which
-               accompanies this distribution, and is available at
-               http://www.eclipse.org/legal/epl-v10.html";
+        under the terms of the Eclipse Public License v1.0 which
+        accompanies this distribution, and is available at
+        http://www.eclipse.org/legal/epl-v10.html";
 
     revision "2013-04-09" {
         description
@@ -57,20 +57,20 @@ module threadpool {
         config:java-class "java.util.concurrent.ThreadFactory";
     }
 
-       identity threadpool {
+    identity threadpool {
         description
             "A simple pool of threads able to execute work.";
 
-               base "config:service-type";
+        base "config:service-type";
         config:java-class "org.opendaylight.controller.config.threadpool.ThreadPool";
-       }
+    }
 
-       identity scheduled-threadpool {
+    identity scheduled-threadpool {
         description
             "An extension of the simple pool of threads able to schedule
              work to be executed at some point in time.";
 
-               base "threadpool";
+        base "threadpool";
         config:java-class "org.opendaylight.controller.config.threadpool.ScheduledThreadPool";
-       }
+    }
 }
index 8d1a6307b5e13ff65462ad9b6abe84e6050240a6..be275ef4870b3797e5195d61380a8c5935f3ff83 100644 (file)
@@ -13,7 +13,7 @@ module threadpool-impl-flexible {
 
     description
         "This module contains the base YANG definitions for
-         thread services pure Java implementation.
+        thread services pure Java implementation.
 
         Copyright (c)2013 Cisco Systems, Inc. All rights reserved.;
 
index 07f6c5b1983130f2da57cf35702ca57c6df48e9c..5bf277b328a5e9492993ec19428b32b5507d0806 100644 (file)
@@ -13,7 +13,7 @@ module threadpool-impl-scheduled {
 
     description
         "This module contains the base YANG definitions for
-         thread services pure Java implementation.
+        thread services pure Java implementation.
 
         Copyright (c)2013 Cisco Systems, Inc. All rights reserved.;