Fix intermittent testOwnerChangesOnPeerAvailabilityChanges failure
[controller.git] / opendaylight / config / netty-config-api / src / main / yang / netty.yang
index 7cac5ad5bc6202265be39f385b8749d61bc77e62..9ab19dd959e79f4f20e384e031acba344fa3653a 100644 (file)
@@ -27,26 +27,42 @@ module netty {
     }
 
     identity netty-threadgroup {
+        status deprecated;
         description
             "Configuration wrapper around netty's threadgroup";
 
         base "config:service-type";
         config:java-class "io.netty.channel.EventLoopGroup";
+        config:disable-osgi-service-registration;
     }
 
     identity netty-event-executor {
+        status deprecated;
         description
             "Configuration wrapper around netty's event executor";
 
         base "config:service-type";
         config:java-class "io.netty.util.concurrent.EventExecutor";
+        config:disable-osgi-service-registration;
     }
 
     identity netty-timer {
+        status deprecated;
         description
             "Configuration wrapper around netty's timer";
 
         base "config:service-type";
         config:java-class "io.netty.util.Timer";
+        config:disable-osgi-service-registration;
     }
-}
\ No newline at end of file
+
+    identity channel-factory {
+        status deprecated;
+        description
+            "Configuration wrapper around netty's channel factory";
+
+        base "config:service-type";
+        config:java-class "io.netty.bootstrap.ChannelFactory";
+        config:disable-osgi-service-registration;
+    }
+}