
io.fabric8.kubernetes.api.model.VolumeMountFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
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 VolumeMountFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.VolumeMountFluent{
public VolumeMountFluentImpl() {
}
public VolumeMountFluentImpl(io.fabric8.kubernetes.api.model.VolumeMount instance) {
this.withMountPath(instance.getMountPath());
this.withMountPropagation(instance.getMountPropagation());
this.withName(instance.getName());
this.withReadOnly(instance.getReadOnly());
this.withSubPath(instance.getSubPath());
this.withSubPathExpr(instance.getSubPathExpr());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
private java.lang.String mountPath;
private java.lang.String mountPropagation;
private java.lang.String name;
private java.lang.Boolean readOnly;
private java.lang.String subPath;
private java.lang.String subPathExpr;
private java.util.Map additionalProperties;
public java.lang.String getMountPath() {
return this.mountPath;
}
public A withMountPath(java.lang.String mountPath) {
this.mountPath=mountPath; return (A) this;
}
public java.lang.Boolean hasMountPath() {
return this.mountPath != null;
}
/**
* Method is deprecated. use withMountPath instead.
*/
@java.lang.Deprecated
public A withNewMountPath(java.lang.String arg0) {
return (A)withMountPath(new String(arg0));
}
public java.lang.String getMountPropagation() {
return this.mountPropagation;
}
public A withMountPropagation(java.lang.String mountPropagation) {
this.mountPropagation=mountPropagation; return (A) this;
}
public java.lang.Boolean hasMountPropagation() {
return this.mountPropagation != null;
}
/**
* Method is deprecated. use withMountPropagation instead.
*/
@java.lang.Deprecated
public A withNewMountPropagation(java.lang.String arg0) {
return (A)withMountPropagation(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.Boolean getReadOnly() {
return this.readOnly;
}
public A withReadOnly(java.lang.Boolean readOnly) {
this.readOnly=readOnly; return (A) this;
}
public java.lang.Boolean hasReadOnly() {
return this.readOnly != null;
}
public java.lang.String getSubPath() {
return this.subPath;
}
public A withSubPath(java.lang.String subPath) {
this.subPath=subPath; return (A) this;
}
public java.lang.Boolean hasSubPath() {
return this.subPath != null;
}
/**
* Method is deprecated. use withSubPath instead.
*/
@java.lang.Deprecated
public A withNewSubPath(java.lang.String arg0) {
return (A)withSubPath(new String(arg0));
}
public java.lang.String getSubPathExpr() {
return this.subPathExpr;
}
public A withSubPathExpr(java.lang.String subPathExpr) {
this.subPathExpr=subPathExpr; return (A) this;
}
public java.lang.Boolean hasSubPathExpr() {
return this.subPathExpr != null;
}
/**
* Method is deprecated. use withSubPathExpr instead.
*/
@java.lang.Deprecated
public A withNewSubPathExpr(java.lang.String arg0) {
return (A)withSubPathExpr(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;
VolumeMountFluentImpl that = (VolumeMountFluentImpl) o;
if (mountPath != null ? !mountPath.equals(that.mountPath) :that.mountPath != null) return false;
if (mountPropagation != null ? !mountPropagation.equals(that.mountPropagation) :that.mountPropagation != null) return false;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
if (readOnly != null ? !readOnly.equals(that.readOnly) :that.readOnly != null) return false;
if (subPath != null ? !subPath.equals(that.subPath) :that.subPath != null) return false;
if (subPathExpr != null ? !subPathExpr.equals(that.subPathExpr) :that.subPathExpr != 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(mountPath, mountPropagation, name, readOnly, subPath, subPathExpr, additionalProperties, super.hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy