16 package org.openkilda.testing.service.aswitch.model;
18 import com.fasterxml.jackson.annotation.JsonCreator;
19 import com.fasterxml.jackson.annotation.JsonInclude;
20 import com.fasterxml.jackson.annotation.JsonProperty;
21 import lombok.Builder;
24 import java.io.Serializable;
26 @JsonInclude(JsonInclude.Include.NON_NULL)
30 @JsonProperty(
"in_port")
31 private Integer inPort;
33 @JsonProperty(
"out_port")
34 private Integer outPort;
37 public ASwitchFlow(@JsonProperty(
"in_port") Integer inPort, @JsonProperty(
"out_port") Integer outPort) {
39 this.outPort = outPort;
ASwitchFlow(@JsonProperty("in_port") Integer inPort, @JsonProperty("out_port") Integer outPort)