io.fabric8.kubernetes.api.model.ContainerPortFluent Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Fluent;
public class ContainerPortFluent> implements Fluent{
private Integer containerPort ;
private String hostIP ;
private Integer hostPort ;
private String name ;
private String protocol ;
private Map additionalProperties = new HashMap();
public Integer getContainerPort(){
return this.containerPort;
}
public T withContainerPort(Integer containerPort){
this.containerPort=containerPort; return (T) this;
}
public String getHostIP(){
return this.hostIP;
}
public T withHostIP(String hostIP){
this.hostIP=hostIP; return (T) this;
}
public Integer getHostPort(){
return this.hostPort;
}
public T withHostPort(Integer hostPort){
this.hostPort=hostPort; return (T) this;
}
public String getName(){
return this.name;
}
public T withName(String name){
this.name=name; return (T) this;
}
public String getProtocol(){
return this.protocol;
}
public T withProtocol(String protocol){
this.protocol=protocol; return (T) this;
}
public Map getAdditionalProperties(){
return this.additionalProperties;
}
public T withAdditionalProperties(Map additionalProperties){
this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
}
public T addToAdditionalProperties(String key, Object value){
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy