Merge "Adding another constructor to ContainerFlowConfig to take dlVlan. Being an...
[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-rpc-registry {
27         base "config:service-type";
28         config:java-class "org.opendaylight.controller.sal.binding.api.RpcProviderRegistry";
29     }
30
31     identity binding-notification-service {
32         base "config:service-type";
33         config:java-class "org.opendaylight.controller.sal.binding.api.NotificationProviderService";
34     }
35
36 }