blob: 74ef165e1bee462cefeb0c994677596d7b4191c4 [file] [log] [blame]
alshabib902d41b2014-10-07 16:52:05 -07001package org.onlab.onos.net.flow;
2
3import java.util.Collection;
4
5import org.onlab.onos.net.intent.BatchOperation;
6
7public class FlowRuleBatchOperation
8 extends BatchOperation<FlowRuleBatchEntry> {
9
10 public FlowRuleBatchOperation(Collection<FlowRuleBatchEntry> operations) {
11 super(operations);
12 }
13}