
io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluentImpl 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.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
/**
* Generated
*/
public class CinderPersistentVolumeSourceFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluent{
public CinderPersistentVolumeSourceFluentImpl() {
}
public CinderPersistentVolumeSourceFluentImpl(io.fabric8.kubernetes.api.model.CinderPersistentVolumeSource instance) {
this.withFsType(instance.getFsType());
this.withReadOnly(instance.getReadOnly());
this.withSecretRef(instance.getSecretRef());
this.withVolumeID(instance.getVolumeID());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
private java.lang.String fsType;
private java.lang.Boolean readOnly;
private io.fabric8.kubernetes.api.model.SecretReferenceBuilder secretRef;
private java.lang.String volumeID;
private java.util.Map additionalProperties;
public java.lang.String getFsType() {
return this.fsType;
}
public A withFsType(java.lang.String fsType) {
this.fsType=fsType; return (A) this;
}
public java.lang.Boolean hasFsType() {
return this.fsType != null;
}
/**
* Method is deprecated. use withFsType instead.
*/
@java.lang.Deprecated
public A withNewFsType(java.lang.String arg0) {
return (A)withFsType(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;
}
/**
* This method has been deprecated, please use method buildSecretRef instead.
* @return The buildable object.
*/
@java.lang.Deprecated
public io.fabric8.kubernetes.api.model.SecretReference getSecretRef() {
return this.secretRef!=null?this.secretRef.build():null;
}
public io.fabric8.kubernetes.api.model.SecretReference buildSecretRef() {
return this.secretRef!=null?this.secretRef.build():null;
}
public A withSecretRef(io.fabric8.kubernetes.api.model.SecretReference secretRef) {
_visitables.get("secretRef").remove(this.secretRef);
if (secretRef!=null){ this.secretRef= new io.fabric8.kubernetes.api.model.SecretReferenceBuilder(secretRef); _visitables.get("secretRef").add(this.secretRef);} return (A) this;
}
public java.lang.Boolean hasSecretRef() {
return this.secretRef != null;
}
public A withNewSecretRef(java.lang.String name,java.lang.String namespace) {
return (A)withSecretRef(new SecretReference(name, namespace));
}
public io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluent.SecretRefNested withNewSecretRef() {
return new io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluentImpl.SecretRefNestedImpl();
}
public io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluent.SecretRefNested withNewSecretRefLike(io.fabric8.kubernetes.api.model.SecretReference item) {
return new io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluentImpl.SecretRefNestedImpl(item);
}
public io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluent.SecretRefNested editSecretRef() {
return withNewSecretRefLike(getSecretRef());
}
public io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRef() {
return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): new io.fabric8.kubernetes.api.model.SecretReferenceBuilder().build());
}
public io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(io.fabric8.kubernetes.api.model.SecretReference item) {
return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): item);
}
public java.lang.String getVolumeID() {
return this.volumeID;
}
public A withVolumeID(java.lang.String volumeID) {
this.volumeID=volumeID; return (A) this;
}
public java.lang.Boolean hasVolumeID() {
return this.volumeID != null;
}
/**
* Method is deprecated. use withVolumeID instead.
*/
@java.lang.Deprecated
public A withNewVolumeID(java.lang.String arg0) {
return (A)withVolumeID(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;
CinderPersistentVolumeSourceFluentImpl that = (CinderPersistentVolumeSourceFluentImpl) o;
if (fsType != null ? !fsType.equals(that.fsType) :that.fsType != null) return false;
if (readOnly != null ? !readOnly.equals(that.readOnly) :that.readOnly != null) return false;
if (secretRef != null ? !secretRef.equals(that.secretRef) :that.secretRef != null) return false;
if (volumeID != null ? !volumeID.equals(that.volumeID) :that.volumeID != 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(fsType, readOnly, secretRef, volumeID, additionalProperties, super.hashCode());
}
public class SecretRefNestedImpl extends io.fabric8.kubernetes.api.model.SecretReferenceFluentImpl> implements io.fabric8.kubernetes.api.model.CinderPersistentVolumeSourceFluent.SecretRefNested,io.fabric8.kubernetes.api.builder.Nested{
SecretRefNestedImpl(io.fabric8.kubernetes.api.model.SecretReference item) {
this.builder = new io.fabric8.kubernetes.api.model.SecretReferenceBuilder(this, item);
}
SecretRefNestedImpl() {
this.builder = new io.fabric8.kubernetes.api.model.SecretReferenceBuilder(this);
}
io.fabric8.kubernetes.api.model.SecretReferenceBuilder builder;
public N and() {
return (N) CinderPersistentVolumeSourceFluentImpl.this.withSecretRef(builder.build());
}
public N endSecretRef() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy