From: Andrew Kim Date: Thu, 3 Apr 2014 22:42:35 +0000 (-0500) Subject: Add Flood and FloodAll supported actions X-Git-Tag: autorelease-tag-v20140601202136_82eb3f9~285 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=9f8e45dc9cc77739c690f5d463854aae678efb7f;hp=5aa059de760149de263e9068fd87aa38a8f82835 Add Flood and FloodAll supported actions This patch will return Flood and FloodAll as supported actions when a switch is queried for its supported flow actions Change-Id: I8c4b8821bd773e3eb654f35a60a9f41e08deadb6 Signed-off-by: Andrew Kim --- diff --git a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/FlowConverter.java b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/FlowConverter.java index 6d1c563aa4..8893762c3c 100644 --- a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/FlowConverter.java +++ b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/FlowConverter.java @@ -806,6 +806,8 @@ public class FlowConverter { list.add(SwPath.class); list.add(HwPath.class); list.add(Drop.class); + list.add(Flood.class); + list.add(FloodAll.class); return list; }