summaryrefslogtreecommitdiffstats
path: root/v3po/vpp-japi-cfg/src/main/yang/vpp-japi-cfg.yang
blob: f723f52820e15ae97696039135d177bf1fb50530 (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
module vpp-japi-cfg {
    yang-version 1;
    namespace "urn:honeycomb:params:xml:ns:yang:vpp:japi:cfg";
    prefix "vjc";

    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 vpp-japi {
        base "config:service-type";
        config:java-class org.openvpp.vppjapi.vppApi;
    }

    identity vpp-japi-impl {
        base config:module-type;
        config:provided-service vpp-japi;
    }

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

            leaf name {
                type string;
                default "v3poODL";
            }
        }
    }

}