
io.fabric8.kubernetes.api.model.ServicePortFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import java.util.LinkedHashMap;
import java.lang.Integer;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
/**
* Generated
*/
public class ServicePortFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.ServicePortFluent{
public ServicePortFluentImpl() {
}
public ServicePortFluentImpl(io.fabric8.kubernetes.api.model.ServicePort instance) {
this.withAppProtocol(instance.getAppProtocol());
this.withName(instance.getName());
this.withNodePort(instance.getNodePort());
this.withPort(instance.getPort());
this.withProtocol(instance.getProtocol());
this.withTargetPort(instance.getTargetPort());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
private java.lang.String appProtocol;
private java.lang.String name;
private java.lang.Integer nodePort;
private java.lang.Integer port;
private java.lang.String protocol;
private io.fabric8.kubernetes.api.model.IntOrStringBuilder targetPort;
private java.util.Map additionalProperties;
public java.lang.String getAppProtocol() {
return this.appProtocol;
}
public A withAppProtocol(java.lang.String appProtocol) {
this.appProtocol=appProtocol; return (A) this;
}
public java.lang.Boolean hasAppProtocol() {
return this.appProtocol != null;
}
/**
* Method is deprecated. use withAppProtocol instead.
*/
@java.lang.Deprecated
public A withNewAppProtocol(java.lang.String arg0) {
return (A)withAppProtocol(new String(arg0));
}
public java.lang.String getName() {
return this.name;
}
public A withName(java.lang.String name) {
this.name=name; return (A) this;
}
public java.lang.Boolean hasName() {
return this.name != null;
}
/**
* Method is deprecated. use withName instead.
*/
@java.lang.Deprecated
public A withNewName(java.lang.String arg0) {
return (A)withName(new String(arg0));
}
public java.lang.Integer getNodePort() {
return this.nodePort;
}
public A withNodePort(java.lang.Integer nodePort) {
this.nodePort=nodePort; return (A) this;
}
public java.lang.Boolean hasNodePort() {
return this.nodePort != null;
}
public java.lang.Integer getPort() {
return this.port;
}
public A withPort(java.lang.Integer port) {
this.port=port; return (A) this;
}
public java.lang.Boolean hasPort() {
return this.port != null;
}
public java.lang.String getProtocol() {
return this.protocol;
}
public A withProtocol(java.lang.String protocol) {
this.protocol=protocol; return (A) this;
}
public java.lang.Boolean hasProtocol() {
return this.protocol != null;
}
/**
* Method is deprecated. use withProtocol instead.
*/
@java.lang.Deprecated
public A withNewProtocol(java.lang.String arg0) {
return (A)withProtocol(new String(arg0));
}
/**
* This method has been deprecated, please use method buildTargetPort instead.
* @return The buildable object.
*/
@java.lang.Deprecated
public io.fabric8.kubernetes.api.model.IntOrString getTargetPort() {
return this.targetPort!=null?this.targetPort.build():null;
}
public io.fabric8.kubernetes.api.model.IntOrString buildTargetPort() {
return this.targetPort!=null?this.targetPort.build():null;
}
public A withTargetPort(io.fabric8.kubernetes.api.model.IntOrString targetPort) {
_visitables.get("targetPort").remove(this.targetPort);
if (targetPort!=null){ this.targetPort= new io.fabric8.kubernetes.api.model.IntOrStringBuilder(targetPort); _visitables.get("targetPort").add(this.targetPort);} return (A) this;
}
public java.lang.Boolean hasTargetPort() {
return this.targetPort != null;
}
public A withNewTargetPort(java.lang.Integer intVal) {
return (A)withTargetPort(new IntOrString(intVal));
}
public A withNewTargetPort(java.lang.String strVal) {
return (A)withTargetPort(new IntOrString(strVal));
}
public io.fabric8.kubernetes.api.model.ServicePortFluent.TargetPortNested withNewTargetPort() {
return new io.fabric8.kubernetes.api.model.ServicePortFluentImpl.TargetPortNestedImpl();
}
public io.fabric8.kubernetes.api.model.ServicePortFluent.TargetPortNested withNewTargetPortLike(io.fabric8.kubernetes.api.model.IntOrString item) {
return new io.fabric8.kubernetes.api.model.ServicePortFluentImpl.TargetPortNestedImpl(item);
}
public io.fabric8.kubernetes.api.model.ServicePortFluent.TargetPortNested editTargetPort() {
return withNewTargetPortLike(getTargetPort());
}
public io.fabric8.kubernetes.api.model.ServicePortFluent.TargetPortNested editOrNewTargetPort() {
return withNewTargetPortLike(getTargetPort() != null ? getTargetPort(): new io.fabric8.kubernetes.api.model.IntOrStringBuilder().build());
}
public io.fabric8.kubernetes.api.model.ServicePortFluent.TargetPortNested editOrNewTargetPortLike(io.fabric8.kubernetes.api.model.IntOrString item) {
return withNewTargetPortLike(getTargetPort() != null ? getTargetPort(): item);
}
public A addToAdditionalProperties(java.lang.String key,java.lang.Object value) {
if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
}
public A addToAdditionalProperties(java.util.Map map) {
if(this.additionalProperties == null && map != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
}
public A removeFromAdditionalProperties(java.lang.String key) {
if(this.additionalProperties == null) { return (A) this; }
if(key != null && this.additionalProperties != null) {this.additionalProperties.remove(key);} return (A)this;
}
public A removeFromAdditionalProperties(java.util.Map map) {
if(this.additionalProperties == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.additionalProperties != null){this.additionalProperties.remove(key);}}} return (A)this;
}
public java.util.Map getAdditionalProperties() {
return this.additionalProperties;
}
public A withAdditionalProperties(java.util.Map additionalProperties) {
if (additionalProperties == null) { this.additionalProperties = null;} else {this.additionalProperties = new java.util.LinkedHashMap(additionalProperties);} return (A) this;
}
public java.lang.Boolean hasAdditionalProperties() {
return this.additionalProperties != null;
}
public boolean equals(java.lang.Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ServicePortFluentImpl that = (ServicePortFluentImpl) o;
if (appProtocol != null ? !appProtocol.equals(that.appProtocol) :that.appProtocol != null) return false;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
if (nodePort != null ? !nodePort.equals(that.nodePort) :that.nodePort != null) return false;
if (port != null ? !port.equals(that.port) :that.port != null) return false;
if (protocol != null ? !protocol.equals(that.protocol) :that.protocol != null) return false;
if (targetPort != null ? !targetPort.equals(that.targetPort) :that.targetPort != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(appProtocol, name, nodePort, port, protocol, targetPort, additionalProperties, super.hashCode());
}
public class TargetPortNestedImpl extends io.fabric8.kubernetes.api.model.IntOrStringFluentImpl> implements io.fabric8.kubernetes.api.model.ServicePortFluent.TargetPortNested,io.fabric8.kubernetes.api.builder.Nested{
TargetPortNestedImpl(io.fabric8.kubernetes.api.model.IntOrString item) {
this.builder = new io.fabric8.kubernetes.api.model.IntOrStringBuilder(this, item);
}
TargetPortNestedImpl() {
this.builder = new io.fabric8.kubernetes.api.model.IntOrStringBuilder(this);
}
io.fabric8.kubernetes.api.model.IntOrStringBuilder builder;
public N and() {
return (N) ServicePortFluentImpl.this.withTargetPort(builder.build());
}
public N endTargetPort() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy