blob: e3b64f01b582dfee5e47738314bee9abe831b1cd [file] [log] [blame]
HIGUCHI Yuta356086e2013-06-12 15:21:19 -07001package net.onrc.onos.ofcontroller.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 {
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}