io.alauda.devops.api.model.DeploymentDetailsBuilder Maven / Gradle / Ivy
package io.alauda.devops.api.model;
import io.alauda.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class DeploymentDetailsBuilder extends DeploymentDetailsFluentImpl implements VisitableBuilder{
DeploymentDetailsFluent> fluent;
Boolean validationEnabled;
public DeploymentDetailsBuilder(){
this(true);
}
public DeploymentDetailsBuilder(Boolean validationEnabled){
this(new DeploymentDetails(), validationEnabled);
}
public DeploymentDetailsBuilder(DeploymentDetailsFluent> fluent){
this(fluent, true);
}
public DeploymentDetailsBuilder(DeploymentDetailsFluent> fluent,Boolean validationEnabled){
this(fluent, new DeploymentDetails(), validationEnabled);
}
public DeploymentDetailsBuilder(DeploymentDetailsFluent> fluent,DeploymentDetails instance){
this(fluent, instance, true);
}
public DeploymentDetailsBuilder(DeploymentDetailsFluent> fluent,DeploymentDetails instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withCauses(instance.getCauses());
fluent.withMessage(instance.getMessage());
this.validationEnabled = validationEnabled;
}
public DeploymentDetailsBuilder(DeploymentDetails instance){
this(instance,true);
}
public DeploymentDetailsBuilder(DeploymentDetails instance,Boolean validationEnabled){
this.fluent = this;
this.withCauses(instance.getCauses());
this.withMessage(instance.getMessage());
this.validationEnabled = validationEnabled;
}
public DeploymentDetails build(){
DeploymentDetails buildable = new DeploymentDetails(fluent.getCauses(),fluent.getMessage());
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;
DeploymentDetailsBuilder that = (DeploymentDetailsBuilder) 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;
}
}