blob: fd62a973e69aea258e4c7caf42c27c3e1a727264 [file] [log] [blame]
Toshio Koideb8cea262014-08-12 18:45:46 -07001package net.onrc.onos.api.flowmanager;
2
3/**
4 * Represents the state of {@link FlowBatchOperation}.
5 */
6public enum FlowBatchState {
7 /**
8 * The operation has been submitted, but the FlowManager is not executing
9 * yet.
10 */
11 SUBMITTED,
12
13 /**
14 * The FlowManager is executing the operation, but not completed yet.
15 */
16 EXECUTING,
17
18 /**
19 * The operation has been executed successfully.
20 */
21 COMPLETED,
22
23 /**
24 * The operation has been failed to be submitted or executed.
25 */
26 FAILED,
27}