blob: 8637b4fabb9d7cb52f8f62241b9c5e66f7f206f9 [file] [log] [blame]
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -08001package net.floodlightcontroller.util;
2
3/**
4 * The Flow Entry state as set by the user (via the ONOS API).
5 */
6public 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}