annotations.io.fabric8.knative.legacysources.v1alpha1.ContainerSourceBuilder Maven / Gradle / Ivy
package io.fabric8.knative.legacysources.v1alpha1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class ContainerSourceBuilder extends ContainerSourceFluentImpl implements VisitableBuilder{
ContainerSourceFluent> fluent;
Boolean validationEnabled;
public ContainerSourceBuilder(){
this(true);
}
public ContainerSourceBuilder(Boolean validationEnabled){
this(new ContainerSource(), validationEnabled);
}
public ContainerSourceBuilder(ContainerSourceFluent> fluent){
this(fluent, true);
}
public ContainerSourceBuilder(ContainerSourceFluent> fluent,Boolean validationEnabled){
this(fluent, new ContainerSource(), validationEnabled);
}
public ContainerSourceBuilder(ContainerSourceFluent> fluent,ContainerSource instance){
this(fluent, instance, true);
}
public ContainerSourceBuilder(ContainerSourceFluent> fluent,ContainerSource instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withDeprecated(instance.getDeprecated());
fluent.withKind(instance.getKind());
fluent.withMetadata(instance.getMetadata());
fluent.withSpec(instance.getSpec());
fluent.withStatus(instance.getStatus());
this.validationEnabled = validationEnabled;
}
public ContainerSourceBuilder(ContainerSource instance){
this(instance,true);
}
public ContainerSourceBuilder(ContainerSource instance,Boolean validationEnabled){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withDeprecated(instance.getDeprecated());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
this.withStatus(instance.getStatus());
this.validationEnabled = validationEnabled;
}
public ContainerSource build(){
ContainerSource buildable = new ContainerSource(fluent.getApiVersion(),fluent.getDeprecated(),fluent.getKind(),fluent.getMetadata(),fluent.getSpec(),fluent.getStatus());
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;
ContainerSourceBuilder that = (ContainerSourceBuilder) 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy