io.fabric8.kubernetes.api.model.CinderVolumeSourceFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.StringBuilder;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import java.lang.StringBuffer;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class CinderVolumeSourceFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements CinderVolumeSourceFluent{
private String fsType;
private Boolean readOnly;
private LocalObjectReferenceBuilder secretRef;
private String volumeID;
public CinderVolumeSourceFluentImpl(){
}
public CinderVolumeSourceFluentImpl(CinderVolumeSource instance){
this.withFsType(instance.getFsType());
this.withReadOnly(instance.getReadOnly());
this.withSecretRef(instance.getSecretRef());
this.withVolumeID(instance.getVolumeID());
}
public String getFsType(){
return this.fsType;
}
public A withFsType(String fsType){
this.fsType=fsType; return (A) this;
}
public Boolean hasFsType(){
return this.fsType != null;
}
public A withNewFsType(String arg1){
return (A)withFsType(new String(arg1));
}
public A withNewFsType(StringBuilder arg1){
return (A)withFsType(new String(arg1));
}
public A withNewFsType(StringBuffer arg1){
return (A)withFsType(new String(arg1));
}
public Boolean isReadOnly(){
return this.readOnly;
}
public A withReadOnly(Boolean readOnly){
this.readOnly=readOnly; return (A) this;
}
public Boolean hasReadOnly(){
return this.readOnly != null;
}
public A withNewReadOnly(String arg1){
return (A)withReadOnly(new Boolean(arg1));
}
public A withNewReadOnly(boolean arg1){
return (A)withReadOnly(new Boolean(arg1));
}
/**
* This method has been deprecated, please use method buildSecretRef instead.
* @return The buildable object.
*/
@Deprecated public LocalObjectReference getSecretRef(){
return this.secretRef!=null?this.secretRef.build():null;
}
public LocalObjectReference buildSecretRef(){
return this.secretRef!=null?this.secretRef.build():null;
}
public A withSecretRef(LocalObjectReference secretRef){
_visitables.get("secretRef").remove(this.secretRef);
if (secretRef!=null){ this.secretRef= new LocalObjectReferenceBuilder(secretRef); _visitables.get("secretRef").add(this.secretRef);} return (A) this;
}
public Boolean hasSecretRef(){
return this.secretRef != null;
}
public A withNewSecretRef(String name){
return (A)withSecretRef(new LocalObjectReference(name));
}
public CinderVolumeSourceFluent.SecretRefNested withNewSecretRef(){
return new SecretRefNestedImpl();
}
public CinderVolumeSourceFluent.SecretRefNested withNewSecretRefLike(LocalObjectReference item){
return new SecretRefNestedImpl(item);
}
public CinderVolumeSourceFluent.SecretRefNested editSecretRef(){
return withNewSecretRefLike(getSecretRef());
}
public CinderVolumeSourceFluent.SecretRefNested editOrNewSecretRef(){
return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): new LocalObjectReferenceBuilder().build());
}
public CinderVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(LocalObjectReference item){
return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): item);
}
public String getVolumeID(){
return this.volumeID;
}
public A withVolumeID(String volumeID){
this.volumeID=volumeID; return (A) this;
}
public Boolean hasVolumeID(){
return this.volumeID != null;
}
public A withNewVolumeID(String arg1){
return (A)withVolumeID(new String(arg1));
}
public A withNewVolumeID(StringBuilder arg1){
return (A)withVolumeID(new String(arg1));
}
public A withNewVolumeID(StringBuffer arg1){
return (A)withVolumeID(new String(arg1));
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CinderVolumeSourceFluentImpl that = (CinderVolumeSourceFluentImpl) 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;
return true;
}
public class SecretRefNestedImpl extends LocalObjectReferenceFluentImpl> implements CinderVolumeSourceFluent.SecretRefNested,io.fabric8.kubernetes.api.builder.Nested{
private final LocalObjectReferenceBuilder builder;
SecretRefNestedImpl(LocalObjectReference item){
this.builder = new LocalObjectReferenceBuilder(this, item);
}
SecretRefNestedImpl(){
this.builder = new LocalObjectReferenceBuilder(this);
}
public N and(){
return (N) CinderVolumeSourceFluentImpl.this.withSecretRef(builder.build());
}
public N endSecretRef(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy