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 user (via the ONOS API). | ||||
5 | */ | ||||
6 | public enum FlowEntryUserState { | ||||
7 | FE_USER_UNKNOWN, // Initialization value: state unknown | ||||
8 | FE_USER_ADD, // Flow entry that is added | ||||
9 | FE_USER_MODIFY, // Flow entry that is modified | ||||
10 | FE_USER_DELETE // Flow entry that is deleted | ||||
11 | } |