Class FlowForwarder
java.lang.Object
org.opendaylight.openflowplugin.applications.frsync.impl.strategy.FlowForwarder
- All Implemented Interfaces:
- ForwardingRulesAddCommitter<Flow,,- AddFlowOutput> - ForwardingRulesCommitter<Flow,,- AddFlowOutput, - RemoveFlowOutput, - UpdateFlowOutput> - ForwardingRulesRemoveCommitter<Flow,,- RemoveFlowOutput> - ForwardingRulesUpdateCommitter<Flow,- UpdateFlowOutput> 
public class FlowForwarder
extends Object
implements ForwardingRulesCommitter<Flow,AddFlowOutput,RemoveFlowOutput,UpdateFlowOutput>   
Implements 
ForwardingRulesCommitter methods for processing add, update and remove of Flow.- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptioncom.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddFlowOutput>>add(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Flow> identifier, Flow addDataObj, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent) Method adds the DataObject which is identified by InstanceIdentifier to device.com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<RemoveFlowOutput>>remove(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Flow> identifier, Flow removeDataObj, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent) Method removes DataObject which is identified by InstanceIdentifier from device.com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<UpdateFlowOutput>>update(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Flow> identifier, Flow original, Flow update, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent) Method updates the original DataObject to the update DataObject in device.
- 
Constructor Details- 
FlowForwarder
 
- 
- 
Method Details- 
removepublic com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<RemoveFlowOutput>> remove(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Flow> identifier, Flow removeDataObj, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent) Description copied from interface:ForwardingRulesRemoveCommitterMethod removes DataObject which is identified by InstanceIdentifier from device.- Specified by:
- removein interface- ForwardingRulesRemoveCommitter<Flow,- RemoveFlowOutput> 
- Parameters:
- identifier- - the whole path to DataObject
- removeDataObj- - DataObject for removing
- nodeIdent- - Node InstanceIdentifier
- Returns:
- RpcResult of action
 
- 
updatepublic com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<UpdateFlowOutput>> update(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Flow> identifier, Flow original, Flow update, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent) Description copied from interface:ForwardingRulesUpdateCommitterMethod updates the original DataObject to the update DataObject in device. Both are identified by same InstanceIdentifier- Specified by:
- updatein interface- ForwardingRulesUpdateCommitter<Flow,- UpdateFlowOutput> 
- Parameters:
- identifier- - the whole path to DataObject
- original- - original DataObject (for update)
- update- - changed DataObject (contain updates)
- nodeIdent- - Node InstanceIdentifier
- Returns:
- RpcResult of action
 
- 
addpublic com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddFlowOutput>> add(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<Flow> identifier, Flow addDataObj, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent) Description copied from interface:ForwardingRulesAddCommitterMethod adds the DataObject which is identified by InstanceIdentifier to device.- Specified by:
- addin interface- ForwardingRulesAddCommitter<Flow,- AddFlowOutput> 
- Parameters:
- identifier- - the whole path to new DataObject
- addDataObj- - new DataObject
- nodeIdent- - Node InstanceIdentifier
- Returns:
- RpcResult of action
 
 
-