annotations.io.fabric8.openshift.api.model.RouteBuilder Maven / Gradle / Ivy
package io.fabric8.openshift.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 java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Builder;
public class RouteBuilder extends RouteFluent implements Builder{
private final RouteFluent> fluent;
public RouteBuilder(){
this(new Route());
}
public RouteBuilder( RouteFluent> fluent ){
this(fluent, new Route());
}
public RouteBuilder( RouteFluent> fluent , Route instance ){
this.fluent = fluent; fluent.withAnnotations(instance.getAnnotations()); fluent.withApiVersion(instance.getApiVersion()); fluent.withCreationTimestamp(instance.getCreationTimestamp()); fluent.withDeletionTimestamp(instance.getDeletionTimestamp()); fluent.withGenerateName(instance.getGenerateName()); fluent.withHost(instance.getHost()); fluent.withKind(instance.getKind()); fluent.withLabels(instance.getLabels()); fluent.withName(instance.getName()); fluent.withNamespace(instance.getNamespace()); fluent.withPath(instance.getPath()); fluent.withResourceVersion(instance.getResourceVersion()); fluent.withSelfLink(instance.getSelfLink()); fluent.withServiceName(instance.getServiceName()); fluent.withTls(instance.getTls()); fluent.withUid(instance.getUid());
}
public RouteBuilder( Route instance ){
this.fluent = this; this.withAnnotations(instance.getAnnotations()); this.withApiVersion(instance.getApiVersion()); this.withCreationTimestamp(instance.getCreationTimestamp()); this.withDeletionTimestamp(instance.getDeletionTimestamp()); this.withGenerateName(instance.getGenerateName()); this.withHost(instance.getHost()); this.withKind(instance.getKind()); this.withLabels(instance.getLabels()); this.withName(instance.getName()); this.withNamespace(instance.getNamespace()); this.withPath(instance.getPath()); this.withResourceVersion(instance.getResourceVersion()); this.withSelfLink(instance.getSelfLink()); this.withServiceName(instance.getServiceName()); this.withTls(instance.getTls()); this.withUid(instance.getUid());
}
public Route build(){
Route buildable = new Route(fluent.getAnnotations(),fluent.getApiVersion(),fluent.getCreationTimestamp(),fluent.getDeletionTimestamp(),fluent.getGenerateName(),fluent.getHost(),fluent.getKind(),fluent.getLabels(),fluent.getName(),fluent.getNamespace(),fluent.getPath(),fluent.getResourceVersion(),fluent.getSelfLink(),fluent.getServiceName(),fluent.getTls(),fluent.getUid());
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 - 2025 Weber Informatics LLC | Privacy Policy