Uses of Class
org.openflow.protocol.action.OFAction

Packages that use OFAction
com.bigswitch.floodlight.vendor   
net.floodlightcontroller.linkdiscovery.internal   
org.openflow.protocol   
org.openflow.protocol.action   
org.openflow.protocol.factory   
org.openflow.protocol.instruction   
org.openflow.protocol.statistics.tableFeatures   
 

Uses of OFAction in com.bigswitch.floodlight.vendor
 

Subclasses of OFAction in com.bigswitch.floodlight.vendor
 class OFActionBigSwitchVendor
           
 class OFActionMirror
           
 class OFActionNiciraTtlDecrement
           
 class OFActionNiciraVendor
          FIXME: this should really be handled by a consistent parse tree for different vendor actions but for the time being this works and gets the job done.
 class OFActionTunnelDstIP
           
 

Uses of OFAction in net.floodlightcontroller.linkdiscovery.internal
 

Methods in net.floodlightcontroller.linkdiscovery.internal that return types with arguments of type OFAction
protected  java.util.List<OFAction> LinkDiscoveryManager.getDiscoveryActions(IOFSwitch sw, OFPhysicalPort port)
          Get the actions for packet-out corresponding to a specific port.
 

Uses of OFAction in org.openflow.protocol
 

Fields in org.openflow.protocol with type parameters of type OFAction
protected  java.util.List<OFAction> OFPacketOut.actions
           
protected  java.util.List<OFAction> OFBucket.actions
           
 

Methods in org.openflow.protocol that return types with arguments of type OFAction
 java.util.List<OFAction> OFPacketOut.getActions()
          Returns the actions contained in this message
 java.util.List<OFAction> OFBucket.getActions()
          Returns read-only copies of the actions contained in this bucket
 

Method parameters in org.openflow.protocol with type arguments of type OFAction
 OFPacketOut OFPacketOut.setActions(java.util.List<OFAction> actions)
          Sets the list of actions on this message
 OFBucket OFBucket.setActions(java.util.List<OFAction> actions)
          Sets the list of actions this bucket contains
 

Constructor parameters in org.openflow.protocol with type arguments of type OFAction
OFPacketOut(byte[] packetData, java.util.List<OFAction> actions, int bufferId)
          Creates a OFPacketOut object with the packet's data, actions, and bufferId
 

Uses of OFAction in org.openflow.protocol.action
 

Subclasses of OFAction in org.openflow.protocol.action
 class OFActionCopyTTLIn
          Represents an ofp_action_copy_ttl_in
 class OFActionCopyTTLOut
          Represents an ofp_action_copy_ttl_out
 class OFActionDecrementMPLSTTL
          Represents an ofp_action_dec_nw_ttl
 class OFActionDecrementNwTTL
          Represents an ofp_action_dec_nw_ttl
 class OFActionGroup
          Represents an ofp_action_group
 class OFActionOutput
           
 class OFActionPopMPLS
          Represents an ofp_action_pop_mpls
 class OFActionPopPBB
          Represents an ofp_action_pop_pbb
 class OFActionPopVLAN
          Represents an ofp_action_pop_vlan
 class OFActionPushMPLS
          Represents an ofp_action_push
 class OFActionPushPBB
          Represents an ofp_action_push
 class OFActionPushVLAN
          Represents an ofp_action_push
 class OFActionSetField
          Represents an ofp_action_set_action
 class OFActionSetMPLSTTL
          Represents an ofp_action_set_mpls_ttl
 class OFActionSetNwTTL
          Represents an ofp_action_set_nw_ttl
 class OFActionSetQueue
          Represents an ofp_action_set_queue
 class OFActionVendor
           
 

Fields in org.openflow.protocol.action with type parameters of type OFAction
protected  java.lang.Class<? extends OFAction> OFActionType.clazz
           
protected  java.lang.reflect.Constructor<? extends OFAction> OFActionType.constructor
           
protected  Instantiable<OFAction> OFActionType.instantiable
           
 

Methods in org.openflow.protocol.action that return OFAction
 OFAction OFAction.clone()
           
static OFAction OFAction.fromString(java.lang.String val)
          Given the output from toString(), create a new OFAction
 OFAction OFActionType.newInstance()
          Returns a new instance of the OFAction represented by this OFActionType
 OFAction OFAction.setLength(short length)
          Set the length of this message
 OFAction OFAction.setType(OFActionType type)
          Set the type of this message
 

Methods in org.openflow.protocol.action that return types with arguments of type OFAction
 java.lang.reflect.Constructor<? extends OFAction> OFActionType.getConstructor()
          Returns the no-argument Constructor of the implementation class for this OFActionType
 Instantiable<OFAction> OFActionType.getInstantiable()
           
 java.lang.Class<? extends OFAction> OFActionType.toClass()
           
 

Method parameters in org.openflow.protocol.action with type arguments of type OFAction
 void OFActionType.setInstantiable(Instantiable<OFAction> instantiable)
           
 

Uses of OFAction in org.openflow.protocol.factory
 

Methods in org.openflow.protocol.factory that return OFAction
 OFAction OFActionFactory.getAction(OFActionType t)
          Retrieves an OFAction instance corresponding to the specified OFActionType
 OFAction BasicFactory.getAction(OFActionType t)
           
 

Methods in org.openflow.protocol.factory that return types with arguments of type OFAction
 java.util.List<OFAction> OFActionFactory.parseActions(java.nio.ByteBuffer data, int length)
          Attempts to parse and return all OFActions contained in the given ByteBuffer, beginning at the ByteBuffer's position, and ending at position+length.
 java.util.List<OFAction> BasicFactory.parseActions(java.nio.ByteBuffer data, int length)
           
 java.util.List<OFAction> OFActionFactory.parseActions(java.nio.ByteBuffer data, int length, int limit)
          Attempts to parse and return all OFActions contained in the given ByteBuffer, beginning at the ByteBuffer's position, and ending at position+length.
 java.util.List<OFAction> FloodlightFactory.parseActions(java.nio.ByteBuffer data, int length, int limit)
           
 java.util.List<OFAction> BasicFactory.parseActions(java.nio.ByteBuffer data, int length, int limit)
           
 

Uses of OFAction in org.openflow.protocol.instruction
 

Fields in org.openflow.protocol.instruction with type parameters of type OFAction
protected  java.util.List<OFAction> OFInstructionActions.actions
           
 

Methods in org.openflow.protocol.instruction that return types with arguments of type OFAction
 java.util.List<OFAction> OFInstructionActions.getActions()
          Returns read-only copies of the actions contained in this Flow Mod
 

Method parameters in org.openflow.protocol.instruction with type arguments of type OFAction
 OFInstructionActions OFInstructionActions.setActions(java.util.List<OFAction> actions)
          Sets the list of actions this Flow Mod contains
 

Constructor parameters in org.openflow.protocol.instruction with type arguments of type OFAction
OFInstructionApplyActions(java.util.List<OFAction> actions)
           
OFInstructionClearActions(java.util.List<OFAction> actions)
           
OFInstructionWriteActions(java.util.List<OFAction> actions)
           
 

Uses of OFAction in org.openflow.protocol.statistics.tableFeatures
 

Fields in org.openflow.protocol.statistics.tableFeatures with type parameters of type OFAction
protected  java.util.List<OFAction> OFTableFeaturesPropertyActions.actions
           
 

Methods in org.openflow.protocol.statistics.tableFeatures that return types with arguments of type OFAction
 java.util.List<OFAction> OFTableFeaturesPropertyActions.getActions()
          Returns read-only copies of the actions contained in this Flow Mod
 

Method parameters in org.openflow.protocol.statistics.tableFeatures with type arguments of type OFAction
 OFTableFeaturesPropertyActions OFTableFeaturesPropertyActions.setActions(java.util.List<OFAction> actions)
          Sets the list of actions this Flow Mod contains