Pavlin Radoslavov | b6f5354 | 2013-03-01 16:02:14 -0800 | [diff] [blame] | 1 | package net.floodlightcontroller.util; |
| 2 | |
| 3 | /** |
| 4 | * The Flow Entry state as set by the controller. |
| 5 | */ |
| 6 | public enum FlowEntrySwitchState { |
| 7 | FE_SWITCH_UNKNOWN, // Initialization value: state unknown |
| 8 | FE_SWITCH_NOT_UPDATED, // Switch not updated with this entry |
| 9 | FE_SWITCH_UPDATE_IN_PROGRESS, // Switch update in progress |
| 10 | FE_SWITCH_UPDATED, // Switch updated with this entry |
| 11 | FE_SWITCH_UPDATE_FAILED // Error updating the switch with this entry |
| 12 | } |