16 package org.openkilda.messaging.payload.flow;
18 import com.fasterxml.jackson.annotation.JsonCreator;
19 import com.fasterxml.jackson.annotation.JsonProperty;
22 import java.util.List;
41 @JsonProperty(
"dropped_flows")
42 private List<String> droppedFlows;
47 @JsonProperty(
"added_flows")
48 private List<String> addedFlows;
53 @JsonProperty(
"modified_flows")
54 private List<String> modifiedFlows;
59 @JsonProperty(
"unchanged_flows")
60 private List<String> unchangedFlows;
64 @JsonProperty(
"dropped_flows") List<String> droppedFlows,
65 @JsonProperty(
"added_flows") List<String> addedFlows,
66 @JsonProperty(
"modified_flows") List<String> modifiedFlows,
67 @JsonProperty(
"unchanged_flows") List<String> unchangedFlows) {
68 this.droppedFlows = droppedFlows;
69 this.addedFlows = addedFlows;
70 this.modifiedFlows = modifiedFlows;
71 this.unchangedFlows = unchangedFlows;
FlowCacheSyncResults( @JsonProperty("dropped_flows") List< String > droppedFlows, @JsonProperty("added_flows") List< String > addedFlows, @JsonProperty("modified_flows") List< String > modifiedFlows, @JsonProperty("unchanged_flows") List< String > unchangedFlows)