blob: 90f42fb1a45bfd97cbfccaff7f982028097df220 [file] [log] [blame]
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -08001package net.floodlightcontroller.util;
2
3/**
4 * The class representing the Flow Entry set of actions.
5 *
6 * The Flow Entry set of actions need to be applied to each packet.
7 *
8 * NOTE: This is just an empty placeholder (for now). The implied action is
9 * forwarding on a single port.
10 */
11public class FlowEntryActions {
12
13 /**
14 * Default constructor.
15 */
16 public FlowEntryActions() {
17 }
18
19 /**
20 * Convert the set of actions to a string.
21 *
22 * @return the set of actions as a string.
23 */
24 @Override
25 public String toString() {
26 String ret = "";
27 // TODO: Implement it!
28 return ret;
29 }
30}