Bug 629: Make BindingDataBroker to be visible.
[controller.git] / opendaylight / md-sal / sal-binding-config / src / main / yang / opendaylight-md-sal-binding.yang
1 module opendaylight-md-sal-binding {
2         yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding";
4     prefix "md-sal-binding";
5
6     import config { prefix config; revision-date 2013-04-05; }
7  
8     description
9         "Service definition for Binding Aware MD-SAL.";
10  
11     revision "2013-10-28" {
12         description
13             "Initial revision";
14     }
15
16     identity binding-broker-osgi-registry {
17         base "config:service-type";
18         config:java-class "org.opendaylight.controller.sal.binding.api.BindingAwareBroker";
19     }
20
21     identity binding-data-broker {
22         base "config:service-type";
23         config:java-class "org.opendaylight.controller.sal.binding.api.data.DataProviderService";
24     }
25     
26     identity binding-async-data-broker {
27         base "config:service-type";
28         config:java-class "org.opendaylight.controller.md.sal.binding.api.BindingDataBroker";
29     }
30
31     identity binding-data-consumer-broker {
32         base "config:service-type";
33         config:java-class "org.opendaylight.controller.sal.binding.api.data.DataBrokerService";
34     }
35
36     identity binding-rpc-registry {
37         base "config:service-type";
38         config:java-class "org.opendaylight.controller.sal.binding.api.RpcProviderRegistry";
39     }
40
41     identity binding-notification-service {
42         base "config:service-type";
43         config:java-class "org.opendaylight.controller.sal.binding.api.NotificationProviderService";
44     }
45
46     identity binding-notification-subscription-service {
47         base "config:service-type";
48         config:java-class "org.opendaylight.controller.sal.binding.api.NotificationService";
49     }
50
51 }