io.alauda.kubernetes.api.model.CinderVolumeSourceBuilder Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import io.alauda.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class CinderVolumeSourceBuilder extends CinderVolumeSourceFluentImpl implements VisitableBuilder{
CinderVolumeSourceFluent> fluent;
Boolean validationEnabled;
public CinderVolumeSourceBuilder(){
this(true);
}
public CinderVolumeSourceBuilder(Boolean validationEnabled){
this(new CinderVolumeSource(), validationEnabled);
}
public CinderVolumeSourceBuilder(CinderVolumeSourceFluent> fluent){
this(fluent, true);
}
public CinderVolumeSourceBuilder(CinderVolumeSourceFluent> fluent,Boolean validationEnabled){
this(fluent, new CinderVolumeSource(), validationEnabled);
}
public CinderVolumeSourceBuilder(CinderVolumeSourceFluent> fluent,CinderVolumeSource instance){
this(fluent, instance, true);
}
public CinderVolumeSourceBuilder(CinderVolumeSourceFluent> fluent,CinderVolumeSource instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withFsType(instance.getFsType());
fluent.withReadOnly(instance.getReadOnly());
fluent.withVolumeID(instance.getVolumeID());
this.validationEnabled = validationEnabled;
}
public CinderVolumeSourceBuilder(CinderVolumeSource instance){
this(instance,true);
}
public CinderVolumeSourceBuilder(CinderVolumeSource instance,Boolean validationEnabled){
this.fluent = this;
this.withFsType(instance.getFsType());
this.withReadOnly(instance.getReadOnly());
this.withVolumeID(instance.getVolumeID());
this.validationEnabled = validationEnabled;
}
public CinderVolumeSource build(){
CinderVolumeSource buildable = new CinderVolumeSource(fluent.getFsType(),fluent.isReadOnly(),fluent.getVolumeID());
io.alauda.kubernetes.api.builder.ValidationUtils.validate(buildable);
return buildable;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
CinderVolumeSourceBuilder that = (CinderVolumeSourceBuilder) o;
if (fluent != null &&fluent != this ? !fluent.equals(that.fluent) :that.fluent != null &&fluent != this ) return false;
if (validationEnabled != null ? !validationEnabled.equals(that.validationEnabled) :that.validationEnabled != null) return false;
return true;
}
}