X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fconfig%2Fnetty-config-api%2Fsrc%2Fmain%2Fyang%2Fnetty.yang;h=9ab19dd959e79f4f20e384e031acba344fa3653a;hb=refs%2Fchanges%2F82%2F38282%2F6;hp=7f7a3ff4ce83e7b5580a78455dce7943e9efac4c;hpb=4541d1e66f077b969b4be106d8bce8b76d53615a;p=controller.git diff --git a/opendaylight/config/netty-config-api/src/main/yang/netty.yang b/opendaylight/config/netty-config-api/src/main/yang/netty.yang index 7f7a3ff4ce..9ab19dd959 100644 --- a/opendaylight/config/netty-config-api/src/main/yang/netty.yang +++ b/opendaylight/config/netty-config-api/src/main/yang/netty.yang @@ -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 "; + contact "Milos Fabian "; description "This module contains the base YANG definitions for @@ -17,36 +17,52 @@ 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 { + 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:java-class "io.netty.util.Timer"; + config:disable-osgi-service-registration; + } + + 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; } -} \ No newline at end of file +}