commit | 244311924c0f9980c2f353ed0dfe7d966d590b11 | [log] [tgz] |
---|---|---|
author | Saurav Das <sauravdas@alumni.stanford.edu> | Mon Mar 07 19:13:00 2016 -0800 |
committer | Ray Milkey <ray@onlab.us> | Mon Mar 21 18:04:20 2016 +0000 |
tree | 3eb67b1df56ece51b6adf44dac11d315fc028683 | |
parent | 21f4b73629ac54064f2c7902894cf340962c460d [diff] |
CLI command to help debug the mapping of next-Objectives to the groups that are created by device drivers. Change-Id: Iff9e04e5e96b2cabbdb40e83215315d2e27791a6
diff --git a/apps/vtn/sfcmgr/src/test/java/org/onosproject/sfc/util/FlowObjectiveAdapter.java b/apps/vtn/sfcmgr/src/test/java/org/onosproject/sfc/util/FlowObjectiveAdapter.java index 11f3667..36c5ca6 100644 --- a/apps/vtn/sfcmgr/src/test/java/org/onosproject/sfc/util/FlowObjectiveAdapter.java +++ b/apps/vtn/sfcmgr/src/test/java/org/onosproject/sfc/util/FlowObjectiveAdapter.java
@@ -15,6 +15,8 @@ */ package org.onosproject.sfc.util; +import java.util.List; + import org.onosproject.net.DeviceId; import org.onosproject.net.flowobjective.FilteringObjective; import org.onosproject.net.flowobjective.FlowObjectiveService; @@ -55,4 +57,9 @@ public ForwardingObjective forwardingObjective() { return forwardingObjective; } + + @Override + public List<String> getNextMappings() { + return null; + } }