blob: 8cad5d0b600fa7197558b098fcf3fed65e5d340f [file] [log] [blame]
Jonathan Hart23701d12014-04-03 10:45:48 -07001package net.onrc.onos.core.util;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -08002
3/**
4 * The Flow Entry state as set by the user (via the ONOS API).
5 */
6public enum FlowEntryUserState {
Ray Milkey269ffb92014-04-03 14:43:30 -07007 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
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080011}