io.fabric8.kubernetes.api.model.extensions.IngressRuleBuilder Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
import javax.validation.ConstraintViolation;
import javax.validation.Validation;
import javax.validation.Validator;
import javax.validation.ValidatorFactory;
import javax.validation.ValidationException;
import java.util.Set;
import java.util.HashMap;
import java.io.Serializable;
import java.util.Map;
import java.util.Map;
import java.util.AbstractMap;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.BaseFluent;
public class IngressRuleBuilder extends IngressRuleFluentImpl implements VisitableBuilder{
IngressRuleFluent> fluent;
public IngressRuleBuilder(){
this(new IngressRule());
}
public IngressRuleBuilder( IngressRuleFluent> fluent ){
this(fluent, new IngressRule());
}
public IngressRuleBuilder( IngressRuleFluent> fluent , IngressRule instance ){
this.fluent = fluent; fluent.withHost(instance.getHost()); fluent.withHttp(instance.getHttp());
}
public IngressRuleBuilder( IngressRule instance ){
this.fluent = this; this.withHost(instance.getHost()); this.withHttp(instance.getHttp());
}
public EditableIngressRule build(){
EditableIngressRule buildable = new EditableIngressRule(fluent.getHost(),fluent.getHttp());
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;
IngressRuleBuilder that = (IngressRuleBuilder) o;
if (fluent != null &&fluent != this ? !fluent.equals(that.fluent) :that.fluent != null &&fluent != this ) return false;
return true;
}
private void validate(T item) {
try {
ValidatorFactory factory = Validation.buildDefaultValidatorFactory();
Validator validator = factory.getValidator();
Set> violations = validator.validate(item);
if (!violations.isEmpty()) {
StringBuilder sb = new StringBuilder();
sb.append("Constraint Violations:\n");
for (ConstraintViolation violation : violations) {
sb.append("\t").append(violation.getRootBeanClass().getSimpleName()).append(" ").append(violation.getPropertyPath()).append(":").append(violation.getMessage()).append("\n");
}
throw new IllegalStateException(sb.toString());
}
} catch(ValidationException e) {
//ignore
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy