io.alauda.devops.api.model.DeploymentStrategyBuilder 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 DeploymentStrategyBuilder extends DeploymentStrategyFluentImpl implements VisitableBuilder{
DeploymentStrategyFluent> fluent;
Boolean validationEnabled;
public DeploymentStrategyBuilder(){
this(true);
}
public DeploymentStrategyBuilder(Boolean validationEnabled){
this(new DeploymentStrategy(), validationEnabled);
}
public DeploymentStrategyBuilder(DeploymentStrategyFluent> fluent){
this(fluent, true);
}
public DeploymentStrategyBuilder(DeploymentStrategyFluent> fluent,Boolean validationEnabled){
this(fluent, new DeploymentStrategy(), validationEnabled);
}
public DeploymentStrategyBuilder(DeploymentStrategyFluent> fluent,DeploymentStrategy instance){
this(fluent, instance, true);
}
public DeploymentStrategyBuilder(DeploymentStrategyFluent> fluent,DeploymentStrategy instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withActiveDeadlineSeconds(instance.getActiveDeadlineSeconds());
fluent.withAnnotations(instance.getAnnotations());
fluent.withCustomParams(instance.getCustomParams());
fluent.withLabels(instance.getLabels());
fluent.withRecreateParams(instance.getRecreateParams());
fluent.withResources(instance.getResources());
fluent.withRollingParams(instance.getRollingParams());
fluent.withType(instance.getType());
this.validationEnabled = validationEnabled;
}
public DeploymentStrategyBuilder(DeploymentStrategy instance){
this(instance,true);
}
public DeploymentStrategyBuilder(DeploymentStrategy instance,Boolean validationEnabled){
this.fluent = this;
this.withActiveDeadlineSeconds(instance.getActiveDeadlineSeconds());
this.withAnnotations(instance.getAnnotations());
this.withCustomParams(instance.getCustomParams());
this.withLabels(instance.getLabels());
this.withRecreateParams(instance.getRecreateParams());
this.withResources(instance.getResources());
this.withRollingParams(instance.getRollingParams());
this.withType(instance.getType());
this.validationEnabled = validationEnabled;
}
public DeploymentStrategy build(){
DeploymentStrategy buildable = new DeploymentStrategy(fluent.getActiveDeadlineSeconds(),fluent.getAnnotations(),fluent.getCustomParams(),fluent.getLabels(),fluent.getRecreateParams(),fluent.getResources(),fluent.getRollingParams(),fluent.getType());
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;
DeploymentStrategyBuilder that = (DeploymentStrategyBuilder) 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;
}
}