Yuta HIGUCHI

add basic backup to DistributedFlowRuleStore

Change-Id: I8eedf0cf30a2555d45145889b5ef210e826b0ac0
...@@ -13,7 +13,7 @@ public class FlowRuleBatchRequest { ...@@ -13,7 +13,7 @@ public class FlowRuleBatchRequest {
13 private final List<FlowEntry> toAdd; 13 private final List<FlowEntry> toAdd;
14 private final List<FlowEntry> toRemove; 14 private final List<FlowEntry> toRemove;
15 15
16 - public FlowRuleBatchRequest(int batchId, List<FlowEntry> toAdd, List<FlowEntry> toRemove) { 16 + public FlowRuleBatchRequest(int batchId, List<? extends FlowEntry> toAdd, List<? extends FlowEntry> toRemove) {
17 this.batchId = batchId; 17 this.batchId = batchId;
18 this.toAdd = Collections.unmodifiableList(toAdd); 18 this.toAdd = Collections.unmodifiableList(toAdd);
19 this.toRemove = Collections.unmodifiableList(toRemove); 19 this.toRemove = Collections.unmodifiableList(toRemove);
......