annotations.io.fabric8.kubernetes.api.model.ServicePortBuilder Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
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 io.fabric8.kubernetes.api.model.util.IntOrString;
import java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Builder;
public class ServicePortBuilder extends ServicePortFluent implements Builder{
ServicePortFluent> fluent;
public ServicePortBuilder(){
this(new ServicePort());
}
public ServicePortBuilder( ServicePortFluent> fluent ){
this(fluent, new ServicePort());
}
public ServicePortBuilder( ServicePortFluent> fluent , ServicePort instance ){
this.fluent = fluent; fluent.withName(instance.getName()); fluent.withPort(instance.getPort()); fluent.withProtocol(instance.getProtocol()); fluent.withTargetPort(instance.getTargetPort());
}
public ServicePortBuilder( ServicePort instance ){
this.fluent = this; this.withName(instance.getName()); this.withPort(instance.getPort()); this.withProtocol(instance.getProtocol()); this.withTargetPort(instance.getTargetPort());
}
public ServicePort build(){
ServicePort buildable = new ServicePort(fluent.getName(),fluent.getPort(),fluent.getProtocol(),fluent.getTargetPort());
validate(buildable);
return buildable;
}
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 - 2024 Weber Informatics LLC | Privacy Policy