blob: 4d17de839c3cd547cc730ad17a4145b44a506ff5 [file] [log] [blame]
package net.floodlightcontroller.util;
import org.codehaus.jackson.annotate.JsonProperty;
/**
* The class representing the Flow Entry set of actions.
*
* The Flow Entry set of actions need to be applied to each packet.
*
* NOTE: This is just an empty placeholder (for now). The implied action is
* forwarding on a single port.
*/
public class FlowEntryActions {
/**
* Default constructor.
*/
public FlowEntryActions() {
}
/**
* Convert the set of actions to a string.
*
* @return the set of actions as a string.
*/
@Override
public String toString() {
String ret = "";
// TODO: Implement it!
return ret;
}
}