1d357bde0ab8851adcf013bc8ef3e1f790fc7068
[controller.git] / opendaylight / sal / yang-prototype / code-generator / samples / maven-code-gen-sample / src / main / yang / controller-openflow-ipv6.yang
1 module controller-openflow-ipv6 {
2         yang-version 1;
3         namespace "urn:opendaylight:controller:network:openflow:ipv6";
4         prefix "of6";
5
6         import controller-network {
7                 prefix cn;
8         }
9         import ietf-inet-types { prefix "inet"; }
10         import controller-openflow-ne {prefix "of";}
11
12         revision 2013-06-07 {
13            description "Initial demo";
14         }
15
16
17
18         augment "/cn:network/cn:network-elements/cn:network-element/of:flow-tables/of:flow-table/of:flows/of:flow/of:match" {
19
20                 leaf nl-src {
21                         type inet:ipv6-prefix;
22                 }
23
24                 leaf nl-dst {
25                         type inet:ipv6-prefix;
26                 }
27             } 
28
29 }
30
31