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