aboutsummaryrefslogtreecommitdiffstats
path: root/upstream/odl-aaa-moon/aaa/aaa-idmlight/src/main/yang/aaa-idmlight.yang
blob: 4f28d7552d9b244699467a83fa419b310fb9a976 (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
module aaa-idmlight {
  yang-version 1;
  namespace "config:aaa:authn:idmlight";
  prefix "aaa-idmlight";
    organization "OpenDayLight";

    import config { prefix config; revision-date 2013-04-05; }
    import opendaylight-md-sal-binding { prefix mdsal; revision-date 2013-10-28; }

    contact "saichler@gmail.com";

    revision 2015-12-04 {
        description
            "Initial revision.";
    }

    identity aaa-idmlight {
        base config:module-type;
        config:java-name-prefix AAAIDMLight;
    }

    augment "/config:modules/config:module/config:configuration" {
        case aaa-idmlight {
            when "/config:modules/config:module/config:type = 'aaa-idmlight'";
        }
    }

}