blob: 64d283a785dc4da0e83d5ad8be41ab0e08320091 [file] [log] [blame]
package net.onrc.onos.core.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
}