annotations.io.fabric8.openshift.api.model.ImageBuilder 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 ImageBuilder extends ImageFluent implements Builder{
private final ImageFluent> fluent;
public ImageBuilder(){
this(new Image());
}
public ImageBuilder( ImageFluent> fluent ){
this(fluent, new Image());
}
public ImageBuilder( ImageFluent> fluent , Image instance ){
this.fluent = fluent; fluent.withAnnotations(instance.getAnnotations()); fluent.withApiVersion(instance.getApiVersion()); fluent.withCreationTimestamp(instance.getCreationTimestamp()); fluent.withDeletionTimestamp(instance.getDeletionTimestamp()); fluent.withDockerImageMetadata(instance.getDockerImageMetadata()); fluent.withDockerImageMetadataVersion(instance.getDockerImageMetadataVersion()); fluent.withDockerImageReference(instance.getDockerImageReference()); fluent.withGenerateName(instance.getGenerateName()); fluent.withKind(instance.getKind()); fluent.withLabels(instance.getLabels()); fluent.withName(instance.getName()); fluent.withNamespace(instance.getNamespace()); fluent.withRawManifest(instance.getRawManifest()); fluent.withResourceVersion(instance.getResourceVersion()); fluent.withSelfLink(instance.getSelfLink()); fluent.withUid(instance.getUid());
}
public ImageBuilder( Image instance ){
this.fluent = this; this.withAnnotations(instance.getAnnotations()); this.withApiVersion(instance.getApiVersion()); this.withCreationTimestamp(instance.getCreationTimestamp()); this.withDeletionTimestamp(instance.getDeletionTimestamp()); this.withDockerImageMetadata(instance.getDockerImageMetadata()); this.withDockerImageMetadataVersion(instance.getDockerImageMetadataVersion()); this.withDockerImageReference(instance.getDockerImageReference()); this.withGenerateName(instance.getGenerateName()); this.withKind(instance.getKind()); this.withLabels(instance.getLabels()); this.withName(instance.getName()); this.withNamespace(instance.getNamespace()); this.withRawManifest(instance.getRawManifest()); this.withResourceVersion(instance.getResourceVersion()); this.withSelfLink(instance.getSelfLink()); this.withUid(instance.getUid());
}
public Image build(){
Image buildable = new Image(fluent.getAnnotations(),fluent.getApiVersion(),fluent.getCreationTimestamp(),fluent.getDeletionTimestamp(),fluent.getDockerImageMetadata(),fluent.getDockerImageMetadataVersion(),fluent.getDockerImageReference(),fluent.getGenerateName(),fluent.getKind(),fluent.getLabels(),fluent.getName(),fluent.getNamespace(),fluent.getRawManifest(),fluent.getResourceVersion(),fluent.getSelfLink(),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