75d6125fda000dd5f242ee2ded2c4543e3283b53
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / yang / actor-system-provider-impl.yang
1 module actor-system-provider-impl {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:config:actor-system-provider:impl";
4     prefix "actor-system-impl";
5
6     import config { prefix config; revision-date 2013-04-05; }
7     import actor-system-provider-service {prefix actor-system;}
8
9     description "Akka actor system provider implementation";
10
11     revision "2015-10-05" {
12         description "Initial revision";
13     }
14
15     identity actor-system-provider-impl {
16         base config:module-type;
17         config:provided-service actor-system:actor-system-provider-service;
18         config:java-name-prefix ActorSystemProvider;
19     }
20
21     augment "/config:modules/config:module/config:configuration" {
22         case actor-system-provider-impl {
23             when "/config:modules/config:module/config:type = 'actor-system-provider-impl'";
24         }
25     }
26 }