blob: 7274d5f0beea2927a8099136736b2544056854b1 [file] [log] [blame]
package net.onrc.onos.api.batchoperation;
/**
* An interface for batch operation entry classes.
* <p>
* This is the interface to AddOperation, UpdateOperation and RemoveOperation
* classes which are the entry maintained by BatchOperation.
*/
public interface BatchOperationEntry<T extends IBatchOperationTarget> {
/**
* Gets the BatchOperator of this operation.
*
* @return the BatchOperator of this operation
*/
public BatchOperator getOperator();
}