BUG-1196: fixed bug in choice case codec.
[yangtools.git] / integration-test / bug1196-test-model / src / main / yang / network-topology-pcep.yang
1 module network-topology-pcep {
2     // vi: set et smarttab sw=4 tabstop=4:
3     yang-version 1;
4     namespace "urn:opendaylight:params:xml:ns:yang:topology:pcep";
5     prefix "pn";
6
7     import network-topology { prefix nt; revision-date 2013-10-21; }
8
9     revision "2013-10-24" {
10     }
11
12
13     grouping pcep-client-attributes {
14         container path-computation-client {
15             config false;
16             list reported-lsp {
17                 leaf name {
18                     type string;
19                 }
20                 key name;
21             }
22         }
23     }
24
25     augment "/nt:network-topology/nt:topology/nt:node" {
26         when "../../nt:topology-types/topology-pcep";
27
28         uses pcep-client-attributes;
29     }
30
31 }
32