blob: 6d54450fde490d0a09d72e476c64f7ce408dafe5 [file] [log] [blame]
package net.onrc.onos.api.flowmanager;
/**
* Conflict detection policies for the flow manager.
*/
public enum ConflictDetectionPolicy {
/**
* Do not allow overlap flow-space on any ingress port.
*/
STRICT,
/**
* Keep control of packets flowing through each specified path, tree, etc.
*/
LOOSE,
/**
* No limitation (accepts all, handles by priority).
*/
FREE
}