Wired ClusteredDataStore with Configuration Subsytem
[controller.git] / opendaylight / md-sal / clustered-data-store / implementation / src / main / yang / odl-sal-dom-clustered-store-cfg.yang
1 module odl-sal-dom-clustered-store-cfg {
2         yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:cluster:store";
4     prefix "binding-impl";
5
6         import config { prefix config; revision-date 2013-04-05; }
7         import opendaylight-md-sal-dom {prefix sal;}
8
9     description
10         "Service definition for MD-SAL Clustered Store.";
11  
12     revision "2013-10-28" {
13         description
14             "Initial revision";
15     }
16
17     identity dom-clustered-store-impl {
18         base config:module-type;
19         config:provided-service sal:dom-data-store;
20         config:java-name-prefix ClusteredDataStoreImpl;
21     }
22
23     augment "/config:modules/config:module/config:state" {
24         case dom-clustered-store-impl {
25             when "/config:modules/config:module/config:type = 'dom-clustered-store-impl'";
26         }
27     }
28     
29 }