All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.kubernetes.api.model.ContainerPortFluentImpl Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model;

import java.lang.Integer;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
import java.util.Map;
import java.util.LinkedHashMap;

 /**
  * Generated
  */
public class ContainerPortFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.ContainerPortFluent{
  public ContainerPortFluentImpl() {
  }
  public ContainerPortFluentImpl(io.fabric8.kubernetes.api.model.ContainerPort instance) {
    this.withContainerPort(instance.getContainerPort()); 
    this.withHostIP(instance.getHostIP()); 
    this.withHostPort(instance.getHostPort()); 
    this.withName(instance.getName()); 
    this.withProtocol(instance.getProtocol()); 
    this.withAdditionalProperties(instance.getAdditionalProperties());

  }
  private java.lang.Integer containerPort;
  private java.lang.String hostIP;
  private java.lang.Integer hostPort;
  private java.lang.String name;
  private java.lang.String protocol;
  private java.util.Map additionalProperties;
  public java.lang.Integer getContainerPort() {
    return this.containerPort;
  }
  public A withContainerPort(java.lang.Integer containerPort) {
    this.containerPort=containerPort; return (A) this;
  }
  public java.lang.Boolean hasContainerPort() {
    return this.containerPort != null;
  }
  public java.lang.String getHostIP() {
    return this.hostIP;
  }
  public A withHostIP(java.lang.String hostIP) {
    this.hostIP=hostIP; return (A) this;
  }
  public java.lang.Boolean hasHostIP() {
    return this.hostIP != null;
  }
  
  /**
   * Method is deprecated. use withHostIP instead.
   */
  @java.lang.Deprecated
  public A withNewHostIP(java.lang.String arg0) {
    return (A)withHostIP(new String(arg0));
  }
  public java.lang.Integer getHostPort() {
    return this.hostPort;
  }
  public A withHostPort(java.lang.Integer hostPort) {
    this.hostPort=hostPort; return (A) this;
  }
  public java.lang.Boolean hasHostPort() {
    return this.hostPort != null;
  }
  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.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));
  }
  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;
    ContainerPortFluentImpl that = (ContainerPortFluentImpl) o;
    if (containerPort != null ? !containerPort.equals(that.containerPort) :that.containerPort != null) return false;
    if (hostIP != null ? !hostIP.equals(that.hostIP) :that.hostIP != null) return false;
    if (hostPort != null ? !hostPort.equals(that.hostPort) :that.hostPort != null) return false;
    if (name != null ? !name.equals(that.name) :that.name != null) return false;
    if (protocol != null ? !protocol.equals(that.protocol) :that.protocol != 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(containerPort,  hostIP,  hostPort,  name,  protocol,  additionalProperties,  super.hashCode());
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy