blob: 6d54450fde490d0a09d72e476c64f7ce408dafe5 [file] [log] [blame]
Toshio Koidea03915e2014-07-01 18:39:52 -07001package net.onrc.onos.api.flowmanager;
2
3/**
4 * Conflict detection policies for the flow manager.
5 */
6public enum ConflictDetectionPolicy {
7 /**
8 * Do not allow overlap flow-space on any ingress port.
9 */
10 STRICT,
11
12 /**
13 * Keep control of packets flowing through each specified path, tree, etc.
14 */
15 LOOSE,
16
17 /**
18 * No limitation (accepts all, handles by priority).
19 */
20 FREE
21}