summaryrefslogtreecommitdiffstats
path: root/v3po/api/src/main/yang
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2016-10-20 14:38:27 +0200
committerMaros Marsalek <mmarsale@cisco.com>2016-10-20 15:10:39 +0000
commite0ff3ddc1c7a146c18f1ae4f15e0e4f30ed18a9f (patch)
tree14f1dbfaa041b51767c21b8231f420d4170594c4 /v3po/api/src/main/yang
parent85fd3da7efba703d473c8120c1680b65be28f565 (diff)
HONEYCOMB-268: Fix order of union types in vpp-index
ODL does not uses builders for unions anymore. Unused builders will be removed in subsequent commit. Change-Id: Ib4e77fed19f591f6f0dc836d66067a2827d2e202 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'v3po/api/src/main/yang')
-rw-r--r--v3po/api/src/main/yang/vpp-classifier.yang8
1 files changed, 7 insertions, 1 deletions
diff --git a/v3po/api/src/main/yang/vpp-classifier.yang b/v3po/api/src/main/yang/vpp-classifier.yang
index 8bf939933..ea2788289 100644
--- a/v3po/api/src/main/yang/vpp-classifier.yang
+++ b/v3po/api/src/main/yang/vpp-classifier.yang
@@ -3,6 +3,12 @@ module vpp-classifier {
namespace "urn:opendaylight:params:xml:ns:yang:vpp:classifier";
prefix "vpp-classifier";
+ revision "2016-12-14" {
+ description
+ "This revision adds the following new features:
+ - updates order of union types for opaque-index";
+ }
+
revision "2015-06-03" {
description
"Initial revision of model for VPP packet classifier.
@@ -54,8 +60,8 @@ module vpp-classifier {
typedef opaque-index {
type union {
- type vpp-node;
type uint32;
+ type vpp-node;
}
description
"Defines opaque-index type - metadata that can be attached to session-hit packets.