Inject MD_SAL services directly in sal-binding-it tests
[controller.git] / opendaylight / md-sal / sal-dom-config / src / main / yang / opendaylight-md-sal-dom.yang
1 module opendaylight-md-sal-dom {
2         yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom";
4     prefix "md-sal-dom";
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 dom-broker-osgi-registry {
17         base "config:service-type";
18         config:java-class "org.opendaylight.controller.sal.core.api.Broker";
19     }
20
21     identity dom-async-data-broker {
22         base "config:service-type";
23         config:java-class "org.opendaylight.controller.md.sal.dom.api.DOMDataBroker";
24         config:disable-osgi-service-registration;
25     }
26
27     identity schema-service {
28         base "config:service-type";
29         config:java-class "org.opendaylight.controller.sal.core.api.model.SchemaService";
30         config:disable-osgi-service-registration;
31     }
32
33     identity yang-text-source-provider {
34         base "config:service-type";
35         config:java-class "org.opendaylight.controller.sal.core.api.model.YangTextSourceProvider";
36         config:disable-osgi-service-registration;
37     }
38 }