summaryrefslogtreecommitdiffstats
path: root/v3po/vpp-translate-utils/src/main/yang/vpp-util.yang
blob: bd903848c1825b8a194dddc40d732fc6946a200c (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
module vpp-util {
    yang-version 1;
    namespace "urn:honeycomb:params:xml:ns:yang:vpp:util";
    prefix "vpp-u";

    import config { prefix config; revision-date 2013-04-05; }
    import data-api { prefix dapi; revision-date 2016-04-11; }

    description
        "This module contains utilities for vpp readers/writers";

    revision "2016-04-06" {
        description
            "Initial revision.";
    }

    identity naming-context {
        base "config:service-type";
        config:java-class io.fd.honeycomb.v3po.translate.v3po.util.NamingContext;
    }

    identity naming-context-impl {
        base config:module-type;
        config:provided-service naming-context;
    }

    augment "/config:modules/config:module/config:configuration" {
        case naming-context-impl {
            when "/config:modules/config:module/config:type = 'naming-context-impl'";

            leaf artificial-name-prefix {
                type string;
            }

            container context-data-tree {
                uses config:service-ref {
                    refine type {
                        mandatory true;
                        config:required-identity dapi:data-tree;
                    }
                }
            }
        }
    }

}