blob: 8637b4fabb9d7cb52f8f62241b9c5e66f7f206f9 [file] [log] [blame]
package net.floodlightcontroller.util;
/**
* The Flow Entry state as set by the user (via the ONOS API).
*/
public enum FlowEntryUserState {
FE_USER_UNKNOWN, // Initialization value: state unknown
FE_USER_ADD, // Flow entry that is added
FE_USER_MODIFY, // Flow entry that is modified
FE_USER_DELETE // Flow entry that is deleted
}