blob: 841cdb3df716fba287e056ea375e553121acb558 (
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
|
module data-impl {
yang-version 1;
namespace "urn:honeycomb:params:xml:ns:yang:data:impl";
prefix "tutils";
import config { prefix config; revision-date 2013-04-05; }
import opendaylight-md-sal-binding { prefix md-sal-binding; revision-date 2013-10-28;}
import opendaylight-md-sal-dom { prefix dom; revision-date 2013-10-28;}
import data-api { prefix dapi; revision-date 2016-04-11; }
import translate-api { prefix tapi; revision-date 2016-04-06; }
description
"This module contains YANG module definitions
for honeycomd data layer";
revision "2016-04-11" {
description
"Initial revision.";
}
identity honeycomb-config-data-tree {
base config:module-type;
config:provided-service dapi:honeycomb-modifiable-data-tree;
config:java-name-prefix ConfigDataTree;
}
augment "/config:modules/config:module/config:configuration" {
case honeycomb-config-data-tree {
when "/config:modules/config:module/config:type = 'honeycomb-config-data-tree'";
container schema-service {
uses config:service-ref {
refine type {
mandatory true;
config:required-identity dom:schema-service;
}
}
}
container binding-normalized-node-serializer {
uses config:service-ref {
refine type {
mandatory true;
config:required-identity md-sal-binding:binding-normalized-node-serializer;
}
}
}
container writer-registry {
uses config:service-ref {
refine type {
mandatory true;
config:required-identity tapi:honeycomb-writer-registry;
}
}
}
}
}
}
|