blob: 15a842e0eb364878172c273b05bda743633d34ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
module vpp-cfg-init {
yang-version 1;
namespace "urn:honeycomb:params:xml:ns:yang:vpp:data:init";
prefix "init";
import config { prefix config; revision-date 2013-04-05; }
import opendaylight-md-sal-binding { prefix md-sal-binding; revision-date 2013-10-28;}
import translate-api { prefix tapi; revision-date 2016-04-06; }
import data-api { prefix dapi; revision-date 2016-04-11; }
description
"This module contains initializers for VPP config data tree";
revision "2016-04-07" {
description
"Initial revision";
}
identity vpp-cfg-initializer {
base "config:service-type";
config:java-class io.fd.honeycomb.v3po.vpp.data.init.InitializerRegistry;
}
identity vpp-cfg-initializer-impl {
base config:module-type;
config:provided-service vpp-cfg-initializer;
config:java-name-prefix VppConfigurationInitializer;
}
augment "/config:modules/config:module/config:configuration" {
case vpp-cfg-initializer-impl {
when "/config:modules/config:module/config:type = 'vpp-cfg-initializer-impl'";
container reader-registry {
uses config:service-ref {
refine type {
mandatory true;
config:required-identity tapi:honeycomb-reader-registry;
}
}
}
// TODO swich to binding broker
container config-data-tree {
uses config:service-ref {
refine type {
mandatory true;
config:required-identity dapi:honeycomb-modifiable-data-tree;
}
}
}
container serializer {
uses config:service-ref {
refine type {
mandatory true;
config:required-identity md-sal-binding:binding-normalized-node-serializer;
}
}
}
}
}
}
|