me.snowdrop.istio.api.model.v1.routing.PortFluentImpl Maven / Gradle / Ivy
package me.snowdrop.istio.api.model.v1.routing;
import java.lang.Integer;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonProperty;
import me.snowdrop.istio.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class PortFluentImpl> extends me.snowdrop.istio.api.builder.BaseFluent implements PortFluent{
private Integer port;
private String protocol;
public PortFluentImpl(){
}
public PortFluentImpl(Port instance){
this.withPort(instance.getPort());
this.withProtocol(instance.getProtocol());
}
public Integer getPort(){
return this.port;
}
public A withPort(Integer port){
this.port=port; return (A) this;
}
public Boolean hasPort(){
return this.port != null;
}
public String getProtocol(){
return this.protocol;
}
public A withProtocol(String protocol){
this.protocol=protocol; return (A) this;
}
public Boolean hasProtocol(){
return this.protocol != null;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
PortFluentImpl that = (PortFluentImpl) o;
if (port != null ? !port.equals(that.port) :that.port != null) return false;
if (protocol != null ? !protocol.equals(that.protocol) :that.protocol != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy