blob: 5d564d6b2a3485c7077be687e6c70797c98a55b4 [file] [log] [blame]
package net.onrc.onos.core.intent;
import org.projectfloodlight.openflow.protocol.OFFactory;
import org.projectfloodlight.openflow.protocol.action.OFAction;
/**
* An abstract class that represents an OpenFlow action.
*/
public abstract class Action {
/**
* Builds and returns an OFAction given an OFFactory.
*
* @param factory the OFFactory to use for building
* @return the OFAction
*/
public abstract OFAction getOFAction(OFFactory factory);
}