HONEYCOMB-34: Configurable ConfigDataTree dependency
[honeycomb.git] / v3po / data-api / src / main / yang / data-api.yang
1 module data-api {
2     yang-version 1;
3     namespace "urn:honeycomb:params:xml:ns:yang:data:api";
4     prefix "dapi";
5
6     import config { prefix config; revision-date 2013-04-05; }
7
8     description
9         "This module contains the base YANG data tree definitions
10         for data store modeling";
11
12     revision "2016-04-11" {
13         description
14             "Initial revision.";
15     }
16
17     identity honeycomb-readable-data-tree {
18         base "config:service-type";
19         config:java-class io.fd.honeycomb.v3po.data.ReadableDataTree;
20     }
21
22     identity honeycomb-modifiable-data-tree {
23         base "config:service-type";
24         config:java-class io.fd.honeycomb.v3po.data.ModifiableDataTree;
25     }
26
27 }