1 package org.openkilda.integration.model.response;
3 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4 import com.fasterxml.jackson.annotation.JsonInclude;
5 import com.fasterxml.jackson.annotation.JsonProperty;
6 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
8 @JsonInclude(JsonInclude.Include.NON_NULL)
9 @JsonIgnoreProperties(ignoreUnknown =
true)
10 @JsonPropertyOrder({
"switch_id",
"port_no",
"seq_id",
"segment_latency"})
13 @JsonProperty(
"switch_id")
14 private String switchId;
15 @JsonProperty(
"port_no")
16 private Integer portNo;
17 @JsonProperty(
"seq_id")
18 private Integer seqId;
19 @JsonProperty(
"segment_latency")
20 private Integer segmentLatency;
27 this.switchId = switchId;
47 return segmentLatency;
51 this.segmentLatency = segmentLatency;
56 return "IslPath [switchId=" + switchId +
", portNo=" + portNo +
", seqId=" + seqId
57 +
", segmentLatency=" + segmentLatency +
"]";
void setPortNo(final Integer portNo)
void setSeqId(final Integer seqId)
void setSwitchId(final String switchId)
void setSegmentLatency(final Integer segmentLatency)
Integer getSegmentLatency()