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 Summary
ConstructorsConstructorDescriptionFlowForwarder(AddFlow addFlow, RemoveFlow removeFlow, UpdateFlow updateFlow) -
Method Summary
Modifier 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
-
remove
public 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 interfaceForwardingRulesRemoveCommitter<Flow,RemoveFlowOutput> - Parameters:
identifier- - the whole path to DataObjectremoveDataObj- - DataObject for removingnodeIdent- - Node InstanceIdentifier- Returns:
- RpcResult of action
-
update
public 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 interfaceForwardingRulesUpdateCommitter<Flow,UpdateFlowOutput> - Parameters:
identifier- - the whole path to DataObjectoriginal- - original DataObject (for update)update- - changed DataObject (contain updates)nodeIdent- - Node InstanceIdentifier- Returns:
- RpcResult of action
-
add
public 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 interfaceForwardingRulesAddCommitter<Flow,AddFlowOutput> - Parameters:
identifier- - the whole path to new DataObjectaddDataObj- - new DataObjectnodeIdent- - Node InstanceIdentifier- Returns:
- RpcResult of action
-