
io.kubernetes.client.models.V1QuobyteVolumeSourceFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class V1QuobyteVolumeSourceFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1QuobyteVolumeSourceFluent{
private String group;
private Boolean readOnly;
private String registry;
private String user;
private String volume;
public V1QuobyteVolumeSourceFluentImpl(){
}
public V1QuobyteVolumeSourceFluentImpl(V1QuobyteVolumeSource instance){
this.withGroup(instance.getGroup());
this.withReadOnly(instance.isReadOnly());
this.withRegistry(instance.getRegistry());
this.withUser(instance.getUser());
this.withVolume(instance.getVolume());
}
public String getGroup(){
return this.group;
}
public A withGroup(String group){
this.group=group; return (A) this;
}
public Boolean hasGroup(){
return this.group != 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;
}
public A withNewReadOnly(boolean arg1){
return (A)withReadOnly(new Boolean(arg1));
}
public A withNewReadOnly(String arg1){
return (A)withReadOnly(new Boolean(arg1));
}
public String getRegistry(){
return this.registry;
}
public A withRegistry(String registry){
this.registry=registry; return (A) this;
}
public Boolean hasRegistry(){
return this.registry != null;
}
public String getUser(){
return this.user;
}
public A withUser(String user){
this.user=user; return (A) this;
}
public Boolean hasUser(){
return this.user != null;
}
public String getVolume(){
return this.volume;
}
public A withVolume(String volume){
this.volume=volume; return (A) this;
}
public Boolean hasVolume(){
return this.volume != 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;
V1QuobyteVolumeSourceFluentImpl that = (V1QuobyteVolumeSourceFluentImpl) o;
if (group != null ? !group.equals(that.group) :that.group != null) return false;
if (readOnly != null ? !readOnly.equals(that.readOnly) :that.readOnly != null) return false;
if (registry != null ? !registry.equals(that.registry) :that.registry != null) return false;
if (user != null ? !user.equals(that.user) :that.user != null) return false;
if (volume != null ? !volume.equals(that.volume) :that.volume != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy