16 package org.openkilda.messaging.info.rule;
21 import com.fasterxml.jackson.annotation.JsonCreator;
22 import com.fasterxml.jackson.annotation.JsonProperty;
23 import lombok.Builder;
26 import java.util.List;
32 @JsonProperty(
value =
"switch_id")
34 @JsonProperty(
value =
"flows")
35 private List<FlowEntry> flowEntries;
40 @JsonProperty(
value =
"flows") List<FlowEntry> flowEntries) {
41 this.switchId = switchId;
42 this.flowEntries = flowEntries;
SwitchFlowEntries( @JsonProperty(value="switch_id") SwitchId switchId, @JsonProperty(value="flows") List< FlowEntry > flowEntries)