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