annotations.io.alauda.devops.api.model.GroupRestrictionBuilder 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 GroupRestrictionBuilder extends GroupRestrictionFluentImpl implements VisitableBuilder{
GroupRestrictionFluent> fluent;
Boolean validationEnabled;
public GroupRestrictionBuilder(){
this(true);
}
public GroupRestrictionBuilder(Boolean validationEnabled){
this(new GroupRestriction(), validationEnabled);
}
public GroupRestrictionBuilder(GroupRestrictionFluent> fluent){
this(fluent, true);
}
public GroupRestrictionBuilder(GroupRestrictionFluent> fluent,Boolean validationEnabled){
this(fluent, new GroupRestriction(), validationEnabled);
}
public GroupRestrictionBuilder(GroupRestrictionFluent> fluent,GroupRestriction instance){
this(fluent, instance, true);
}
public GroupRestrictionBuilder(GroupRestrictionFluent> fluent,GroupRestriction instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withGroups(instance.getGroups());
fluent.withLabels(instance.getLabels());
this.validationEnabled = validationEnabled;
}
public GroupRestrictionBuilder(GroupRestriction instance){
this(instance,true);
}
public GroupRestrictionBuilder(GroupRestriction instance,Boolean validationEnabled){
this.fluent = this;
this.withGroups(instance.getGroups());
this.withLabels(instance.getLabels());
this.validationEnabled = validationEnabled;
}
public GroupRestriction build(){
GroupRestriction buildable = new GroupRestriction(fluent.getGroups(),fluent.getLabels());
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;
GroupRestrictionBuilder that = (GroupRestrictionBuilder) 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;
}
}