blob: 64d283a785dc4da0e83d5ad8be41ab0e08320091 [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 {
Pavlin Radoslavovd421a7c2013-10-26 11:25:40 -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}