
io.fabric8.kubernetes.api.model.GlusterfsPersistentVolumeSourceFluentImpl 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 GlusterfsPersistentVolumeSourceFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.GlusterfsPersistentVolumeSourceFluent{
public GlusterfsPersistentVolumeSourceFluentImpl() {
}
public GlusterfsPersistentVolumeSourceFluentImpl(io.fabric8.kubernetes.api.model.GlusterfsPersistentVolumeSource instance) {
this.withEndpoints(instance.getEndpoints());
this.withEndpointsNamespace(instance.getEndpointsNamespace());
this.withPath(instance.getPath());
this.withReadOnly(instance.getReadOnly());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
private java.lang.String endpoints;
private java.lang.String endpointsNamespace;
private java.lang.String path;
private java.lang.Boolean readOnly;
private java.util.Map additionalProperties;
public java.lang.String getEndpoints() {
return this.endpoints;
}
public A withEndpoints(java.lang.String endpoints) {
this.endpoints=endpoints; return (A) this;
}
public java.lang.Boolean hasEndpoints() {
return this.endpoints != null;
}
/**
* Method is deprecated. use withEndpoints instead.
*/
@java.lang.Deprecated
public A withNewEndpoints(java.lang.String arg0) {
return (A)withEndpoints(new String(arg0));
}
public java.lang.String getEndpointsNamespace() {
return this.endpointsNamespace;
}
public A withEndpointsNamespace(java.lang.String endpointsNamespace) {
this.endpointsNamespace=endpointsNamespace; return (A) this;
}
public java.lang.Boolean hasEndpointsNamespace() {
return this.endpointsNamespace != null;
}
/**
* Method is deprecated. use withEndpointsNamespace instead.
*/
@java.lang.Deprecated
public A withNewEndpointsNamespace(java.lang.String arg0) {
return (A)withEndpointsNamespace(new String(arg0));
}
public java.lang.String getPath() {
return this.path;
}
public A withPath(java.lang.String path) {
this.path=path; return (A) this;
}
public java.lang.Boolean hasPath() {
return this.path != null;
}
/**
* Method is deprecated. use withPath instead.
*/
@java.lang.Deprecated
public A withNewPath(java.lang.String arg0) {
return (A)withPath(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 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;
GlusterfsPersistentVolumeSourceFluentImpl that = (GlusterfsPersistentVolumeSourceFluentImpl) o;
if (endpoints != null ? !endpoints.equals(that.endpoints) :that.endpoints != null) return false;
if (endpointsNamespace != null ? !endpointsNamespace.equals(that.endpointsNamespace) :that.endpointsNamespace != null) return false;
if (path != null ? !path.equals(that.path) :that.path != null) return false;
if (readOnly != null ? !readOnly.equals(that.readOnly) :that.readOnly != 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(endpoints, endpointsNamespace, path, readOnly, additionalProperties, super.hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy