Remove verbose logging in TransactUtils
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / yang / hwvtepsouthbound-impl.yang
1 module hwvtepsouthbound-impl {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:hwvtepsouthbound:impl";
4     prefix "hwvtepsouthbound-impl";
5
6     import config { prefix config; revision-date 2013-04-05; }
7     import opendaylight-md-sal-binding { prefix md-sal-binding; revision-date 2013-10-28;}
8     import opendaylight-entity-ownership-service {prefix eos; revision-date 2015-08-10;}
9     import opendaylight-md-sal-dom {prefix dom; revision-date 2013-10-28;}
10     import library { prefix library; revision-date 2014-12-10; }
11
12     description
13         "Service definition for hwvtepsouthbound project";
14
15     revision "2015-09-01" {
16         description
17             "Initial revision";
18     }
19
20     identity hwvtepsouthbound {
21         base config:module-type;
22         config:java-name-prefix HwvtepSouthbound;
23     }
24
25     augment "/config:modules/config:module/config:configuration" {
26         case hwvtepsouthbound {
27             when "/config:modules/config:module/config:type = 'hwvtepsouthbound'";
28             container broker {
29                 uses config:service-ref {
30                     refine type {
31                         mandatory true;
32                         config:required-identity md-sal-binding:binding-broker-osgi-registry;
33                     }
34                 }
35             }
36             container schema-service {
37                 uses config:service-ref {
38                     refine type {
39                         mandatory false;
40                         config:required-identity dom:schema-service;
41                     }
42                 }
43             }
44             container clustering-entity-ownership-service {
45                 uses config:service-ref {
46                     refine type {
47                         mandatory true;
48                         config:required-identity eos:entity-ownership-service;
49                     }
50                 }
51             }
52             container binding-normalized-node-serializer {
53                 uses config:service-ref {
54                     refine type {
55                         mandatory true;
56                         config:required-identity md-sal-binding:binding-normalized-node-serializer;
57                     }
58                 }
59             }
60             container connection-service {
61                 uses config:service-ref {
62                     refine type {
63                         mandatory true;
64                         config:required-identity library:connection-service;
65                     }
66                 }
67             }
68         }
69     }
70 }