Merge "Fix usage of StringBuilder when getting parent path in PathUtils Making consta...
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / yang / distributed-datastore-provider.yang
1 // vi: set smarttab et sw=4 tabstop=4:
2 module distributed-datastore-provider {
3
4     yang-version 1;
5     namespace "urn:opendaylight:params:xml:ns:yang:controller:config:distributed-datastore-provider";
6     prefix "distributed-datastore-provider";
7
8     import config { prefix config; revision-date 2013-04-05; }
9     import rpc-context { prefix rpcx; revision-date 2013-06-17; }
10     import opendaylight-config-dom-datastore {prefix config-dom-store-spi;}
11     import opendaylight-operational-dom-datastore {prefix operational-dom-store-spi;}
12     import opendaylight-md-sal-dom {prefix sal;}
13
14     description
15         "This module contains the base YANG definitions for
16         the distributed datastore provider implementation";
17
18     revision "2014-06-12" {
19         description
20             "Initial revision.";
21     }
22
23     // This is the definition of the service implementation as a module identity.
24     identity distributed-config-datastore-provider {
25             base config:module-type;
26             config:provided-service config-dom-store-spi:config-dom-datastore;
27             // Specifies the prefix for generated java classes.
28             config:java-name-prefix DistributedConfigDataStoreProvider;
29     }
30
31      // This is the definition of the service implementation as a module identity.
32      identity distributed-operational-datastore-provider {
33                 base config:module-type;
34                 config:provided-service operational-dom-store-spi:operational-dom-datastore;
35                 // Specifies the prefix for generated java classes.
36                 config:java-name-prefix DistributedOperationalDataStoreProvider;
37      }
38
39     // Augments the 'configuration' choice node under modules/module.
40     augment "/config:modules/config:module/config:configuration" {
41         case distributed-config-datastore-provider {
42             when "/config:modules/config:module/config:type = 'distributed-config-datastore-provider'";
43             container config-schema-service {
44                           uses config:service-ref {
45                                refine type {
46                                       mandatory false;
47                                       config:required-identity sal:schema-service;
48                                 }
49                           }
50                         }
51         }
52     }
53
54     // Augments the 'configuration' choice node under modules/module.
55         augment "/config:modules/config:module/config:configuration" {
56             case distributed-operational-datastore-provider {
57                 when "/config:modules/config:module/config:type = 'distributed-operational-datastore-provider'";
58                 container operational-schema-service {
59                               uses config:service-ref {
60                                    refine type {
61                                           mandatory false;
62                                           config:required-identity sal:schema-service;
63                                     }
64                               }
65                             }
66             }
67         }
68 }