blob: d5a1472d33eafc116879088dd1f324c519dbea3a [file] [log] [blame]
alshabib902d41b2014-10-07 16:52:05 -07001package org.onlab.onos.net.flow;
2
3import org.onlab.onos.net.flow.FlowRuleBatchEntry.FlowRuleOperation;
4import org.onlab.onos.net.intent.BatchOperationEntry;
5
6
7public class FlowRuleBatchEntry
8 extends BatchOperationEntry<FlowRuleOperation, FlowRule> {
9
10 public FlowRuleBatchEntry(FlowRuleOperation operator, FlowRule target) {
11 super(operator, target);
12 }
13
14 public enum FlowRuleOperation {
15 ADD,
16 REMOVE,
17 MODIFY
18 }
19
20}