blob: 414ee20e1c49f5cc264a4237d917e6907785ff3c (
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
|
module translate-api {
yang-version 1;
namespace "urn:honeycomb:params:xml:ns:yang:translate:api";
prefix "tapi";
import config { prefix config; revision-date 2013-04-05; }
description
"This module contains the base YANG definitions for
readers/writers plugged into a honeycomb";
revision "2016-04-06" {
description
"Initial revision.";
}
identity honeycomb-reader {
base "config:service-type";
config:java-class io.fd.honeycomb.v3po.translate.read.Reader;
}
identity honeycomb-reader-registry {
base "config:service-type";
config:java-class io.fd.honeycomb.v3po.translate.read.ReaderRegistry;
}
identity honeycomb-writer-factory {
base "config:service-type";
config:java-class io.fd.honeycomb.v3po.translate.write.WriterFactory;
}
identity honeycomb-writer-registry {
base "config:service-type";
config:java-class io.fd.honeycomb.v3po.translate.write.ModifiableWriterRegistry;
}
identity honeycomb-writer-registry-builder {
base "config:service-type";
config:java-class io.fd.honeycomb.v3po.translate.write.WriterRegistryBuilder;
}
identity honeycomb-mapping-context {
base "config:service-type";
config:java-class io.fd.honeycomb.v3po.translate.MappingContext;
}
}
|