blob: 9205476d87137531f9fdc0abb55dfe88b3ed22a2 [file] [log] [blame]
package net.onrc.onos.api.flowmanager;
/**
* Represents the state of {@link FlowBatchOperation}.
*/
public enum FlowBatchState {
/**
* The operation has been submitted, but the FlowManager is not executing
* yet.
*/
SUBMITTED,
/**
* The FlowManager is executing the operation, but not completed yet.
*/
EXECUTING,
/**
* The operation has been executed successfully.
*/
COMPLETED,
/**
* The operation has been failed to be submitted or executed.
*/
FAILED,
}