blob: 44439f21bed0bb9d5d70719ddbaa158c8cfa68ef [file] [log] [blame]
HIGUCHI Yuta356086e2013-06-12 15:21:19 -07001package net.onrc.onos.ofcontroller.util;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -08002
3/**
4 * The Flow Entry state as set by the controller.
5 */
6public enum FlowEntrySwitchState {
Pavlin Radoslavovd421a7c2013-10-26 11:25:40 -07007 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
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080012}