blob: fd62a973e69aea258e4c7caf42c27c3e1a727264 [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,
}