16 package org.openkilda.testing.service.traffexam.model;
18 import com.fasterxml.jackson.annotation.JsonCreator;
19 import com.fasterxml.jackson.annotation.JsonProperty;
22 import java.util.UUID;
26 @JsonProperty(
"bind_port")
27 private Integer bindPort;
30 this(null, bindAddressId, null);
35 @JsonProperty(
"idnr") UUID
id,
36 @JsonProperty(
"bind_address") UUID bindAddressId,
37 @JsonProperty(
"bind_port") Integer bindPort) {
38 super(
id, bindAddressId);
40 this.bindPort = bindPort;
ConsumerEndpoint( @JsonProperty("idnr") UUID id, @JsonProperty("bind_address") UUID bindAddressId, @JsonProperty("bind_port") Integer bindPort)
ConsumerEndpoint(UUID bindAddressId)