io.alauda.kubernetes.api.model.RepositoryCommitBuilder 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 RepositoryCommitBuilder extends RepositoryCommitFluentImpl implements VisitableBuilder{
RepositoryCommitFluent> fluent;
Boolean validationEnabled;
public RepositoryCommitBuilder(){
this(true);
}
public RepositoryCommitBuilder(Boolean validationEnabled){
this(new RepositoryCommit(), validationEnabled);
}
public RepositoryCommitBuilder(RepositoryCommitFluent> fluent){
this(fluent, true);
}
public RepositoryCommitBuilder(RepositoryCommitFluent> fluent,Boolean validationEnabled){
this(fluent, new RepositoryCommit(), validationEnabled);
}
public RepositoryCommitBuilder(RepositoryCommitFluent> fluent,RepositoryCommit instance){
this(fluent, instance, true);
}
public RepositoryCommitBuilder(RepositoryCommitFluent> fluent,RepositoryCommit instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withCommitAt(instance.getCommitAt());
fluent.withCommitID(instance.getCommitID());
fluent.withCommitMessage(instance.getCommitMessage());
fluent.withCommitterEmail(instance.getCommitterEmail());
fluent.withCommitterName(instance.getCommitterName());
this.validationEnabled = validationEnabled;
}
public RepositoryCommitBuilder(RepositoryCommit instance){
this(instance,true);
}
public RepositoryCommitBuilder(RepositoryCommit instance,Boolean validationEnabled){
this.fluent = this;
this.withCommitAt(instance.getCommitAt());
this.withCommitID(instance.getCommitID());
this.withCommitMessage(instance.getCommitMessage());
this.withCommitterEmail(instance.getCommitterEmail());
this.withCommitterName(instance.getCommitterName());
this.validationEnabled = validationEnabled;
}
public RepositoryCommit build(){
RepositoryCommit buildable = new RepositoryCommit(fluent.getCommitAt(),fluent.getCommitID(),fluent.getCommitMessage(),fluent.getCommitterEmail(),fluent.getCommitterName());
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;
RepositoryCommitBuilder that = (RepositoryCommitBuilder) 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;
}
}