blob: fce31d182851179a5b68821f1ed24c7321e5efc9 [file] [log] [blame]
Toshio Koidea03915e2014-07-01 18:39:52 -07001package net.onrc.onos.api.batchoperation;
2
3/**
4 * An interface for batch operation entry classes.
5 * <p>
6 * This is the interface to AddOperation, UpdateOperation and RemoveOperation
7 * classes which are the entry maintained by BatchOperation.
8 */
9public interface BatchOperationEntry {
10 /**
11 * Gets the BatchOperator of this operation.
12 *
13 * @return The BatchOperator of this operation.
14 */
15 public BatchOperator getOperator();
16}