
annotations.io.fabric8.docker.api.model.ImageHistoryBuilder Maven / Gradle / Ivy
package io.fabric8.docker.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.ArrayList;
import java.util.RandomAccess;
import java.util.Map;
import java.util.Map;
import java.util.List;
import java.util.List;
import java.util.AbstractCollection;
import java.util.AbstractList;
import java.util.HashMap;
import java.io.Serializable;
import java.util.Collection;
import java.util.AbstractMap;
import io.fabric8.docker.api.builder.Visitable;
import io.fabric8.docker.api.builder.Builder;
import io.fabric8.docker.api.builder.Visitable;
import io.fabric8.docker.api.builder.VisitableBuilder;
import io.fabric8.docker.api.builder.BaseFluent;
import io.fabric8.docker.api.builder.Fluent;
public class ImageHistoryBuilder extends ImageHistoryFluentImpl implements VisitableBuilder{
ImageHistoryFluent> fluent;
public ImageHistoryBuilder(){
this(new ImageHistory());
}
public ImageHistoryBuilder( ImageHistoryFluent> fluent ){
this(fluent, new ImageHistory());
}
public ImageHistoryBuilder( ImageHistoryFluent> fluent , ImageHistory instance ){
this.fluent = fluent; fluent.withComment(instance.getComment()); fluent.withCreated(instance.getCreated()); fluent.withCreatedBy(instance.getCreatedBy()); fluent.withId(instance.getId()); fluent.withSize(instance.getSize()); fluent.withTags(instance.getTags());
}
public ImageHistoryBuilder( ImageHistory instance ){
this.fluent = this; this.withComment(instance.getComment()); this.withCreated(instance.getCreated()); this.withCreatedBy(instance.getCreatedBy()); this.withId(instance.getId()); this.withSize(instance.getSize()); this.withTags(instance.getTags());
}
public EditableImageHistory build(){
EditableImageHistory buildable = new EditableImageHistory(fluent.getComment(),fluent.getCreated(),fluent.getCreatedBy(),fluent.getId(),fluent.getSize(),fluent.getTags());
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;
ImageHistoryBuilder that = (ImageHistoryBuilder) 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