X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-config%2Fsrc%2Fmain%2Fyang%2Fopendaylight-md-sal-binding.yang;h=fcfd6fa3cf0c163c84c4e091bce1479865c65f3d;hb=refs%2Fchanges%2F17%2F15417%2F13;hp=8fb6c897d5d3500454cbcfa16f8f108c3a2cc47e;hpb=17796822dcc6f7a00adb60e4e507b40f342d39ec;p=controller.git diff --git a/opendaylight/md-sal/sal-binding-config/src/main/yang/opendaylight-md-sal-binding.yang b/opendaylight/md-sal/sal-binding-config/src/main/yang/opendaylight-md-sal-binding.yang index 8fb6c897d5..fcfd6fa3cf 100644 --- a/opendaylight/md-sal/sal-binding-config/src/main/yang/opendaylight-md-sal-binding.yang +++ b/opendaylight/md-sal/sal-binding-config/src/main/yang/opendaylight-md-sal-binding.yang @@ -4,10 +4,10 @@ module opendaylight-md-sal-binding { prefix "md-sal-binding"; import config { prefix config; revision-date 2013-04-05; } - + description "Service definition for Binding Aware MD-SAL."; - + revision "2013-10-28" { description "Initial revision"; @@ -17,4 +17,35 @@ module opendaylight-md-sal-binding { base "config:service-type"; config:java-class "org.opendaylight.controller.sal.binding.api.BindingAwareBroker"; } -} \ No newline at end of file + + identity binding-data-broker { + base "config:service-type"; + config:java-class "org.opendaylight.controller.sal.binding.api.data.DataProviderService"; + } + + identity binding-async-data-broker { + base "config:service-type"; + config:java-class "org.opendaylight.controller.md.sal.binding.api.DataBroker"; + } + + identity binding-data-consumer-broker { + base "config:service-type"; + config:java-class "org.opendaylight.controller.sal.binding.api.data.DataBrokerService"; + } + + identity binding-rpc-registry { + base "config:service-type"; + config:java-class "org.opendaylight.controller.sal.binding.api.RpcProviderRegistry"; + } + + identity binding-notification-service { + base "config:service-type"; + config:java-class "org.opendaylight.controller.sal.binding.api.NotificationProviderService"; + } + + identity binding-notification-subscription-service { + base "config:service-type"; + config:java-class "org.opendaylight.controller.sal.binding.api.NotificationService"; + } + +}