![JAR search and dependency download from the Maven repository](/logo.png)
annotations.io.alauda.kubernetes.api.model.StorageOSPersistentVolumeSourceFluentImpl Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.alauda.kubernetes.api.builder.Nested;
import java.lang.String;
import java.lang.Deprecated;
import javax.validation.Valid;
import io.alauda.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class StorageOSPersistentVolumeSourceFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements StorageOSPersistentVolumeSourceFluent{
private String fsType;
private Boolean readOnly;
private ObjectReferenceBuilder secretRef;
private String volumeName;
private String volumeNamespace;
public StorageOSPersistentVolumeSourceFluentImpl(){
}
public StorageOSPersistentVolumeSourceFluentImpl(StorageOSPersistentVolumeSource instance){
this.withFsType(instance.getFsType());
this.withReadOnly(instance.getReadOnly());
this.withSecretRef(instance.getSecretRef());
this.withVolumeName(instance.getVolumeName());
this.withVolumeNamespace(instance.getVolumeNamespace());
}
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 Boolean isReadOnly(){
return this.readOnly;
}
public A withReadOnly(Boolean readOnly){
this.readOnly=readOnly; return (A) this;
}
public Boolean hasReadOnly(){
return this.readOnly!=null;
}
/**
* This method has been deprecated, please use method buildSecretRef instead.
*/
@Deprecated public ObjectReference getSecretRef(){
return this.secretRef!=null?this.secretRef.build():null;
}
public ObjectReference buildSecretRef(){
return this.secretRef!=null?this.secretRef.build():null;
}
public A withSecretRef(ObjectReference secretRef){
_visitables.remove(this.secretRef);
if (secretRef!=null){ this.secretRef= new ObjectReferenceBuilder(secretRef); _visitables.add(this.secretRef);} return (A) this;
}
public Boolean hasSecretRef(){
return this.secretRef!=null;
}
public StorageOSPersistentVolumeSourceFluent.SecretRefNested withNewSecretRef(){
return new SecretRefNestedImpl();
}
public StorageOSPersistentVolumeSourceFluent.SecretRefNested withNewSecretRefLike(ObjectReference item){
return new SecretRefNestedImpl(item);
}
public StorageOSPersistentVolumeSourceFluent.SecretRefNested editSecretRef(){
return withNewSecretRefLike(getSecretRef());
}
public StorageOSPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRef(){
return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): new ObjectReferenceBuilder().build());
}
public StorageOSPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(ObjectReference item){
return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): item);
}
public String getVolumeName(){
return this.volumeName;
}
public A withVolumeName(String volumeName){
this.volumeName=volumeName; return (A) this;
}
public Boolean hasVolumeName(){
return this.volumeName!=null;
}
public String getVolumeNamespace(){
return this.volumeNamespace;
}
public A withVolumeNamespace(String volumeNamespace){
this.volumeNamespace=volumeNamespace; return (A) this;
}
public Boolean hasVolumeNamespace(){
return this.volumeNamespace!=null;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
StorageOSPersistentVolumeSourceFluentImpl that = (StorageOSPersistentVolumeSourceFluentImpl) 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 (volumeName != null ? !volumeName.equals(that.volumeName) :that.volumeName != null) return false;
if (volumeNamespace != null ? !volumeNamespace.equals(that.volumeNamespace) :that.volumeNamespace != null) return false;
return true;
}
public class SecretRefNestedImpl extends ObjectReferenceFluentImpl> implements StorageOSPersistentVolumeSourceFluent.SecretRefNested,io.alauda.kubernetes.api.builder.Nested{
private final ObjectReferenceBuilder builder;
SecretRefNestedImpl(ObjectReference item){
this.builder = new ObjectReferenceBuilder(this, item);
}
SecretRefNestedImpl(){
this.builder = new ObjectReferenceBuilder(this);
}
public N and(){
return (N) StorageOSPersistentVolumeSourceFluentImpl.this.withSecretRef(builder.build());
}
public N endSecretRef(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy