All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.kubernetes.api.model.ContainerStateTerminatedBuilder Maven / Gradle / Ivy

There is a newer version: 0.0.54
Show newest version
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 java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Builder;

public class ContainerStateTerminatedBuilder extends ContainerStateTerminatedFluent implements Builder{

     ContainerStateTerminatedFluent fluent;
public ContainerStateTerminatedBuilder(){
    this(new ContainerStateTerminated());
}
public ContainerStateTerminatedBuilder( ContainerStateTerminatedFluent fluent ){
    this(fluent, new ContainerStateTerminated());
}
public ContainerStateTerminatedBuilder( ContainerStateTerminatedFluent fluent , ContainerStateTerminated instance ){
    this.fluent = fluent; fluent.withContainerID(instance.getContainerID()); fluent.withExitCode(instance.getExitCode()); fluent.withFinishedAt(instance.getFinishedAt()); fluent.withMessage(instance.getMessage()); fluent.withReason(instance.getReason()); fluent.withSignal(instance.getSignal()); fluent.withStartedAt(instance.getStartedAt()); 
}
public ContainerStateTerminatedBuilder( ContainerStateTerminated instance ){
    this.fluent = this; this.withContainerID(instance.getContainerID()); this.withExitCode(instance.getExitCode()); this.withFinishedAt(instance.getFinishedAt()); this.withMessage(instance.getMessage()); this.withReason(instance.getReason()); this.withSignal(instance.getSignal()); this.withStartedAt(instance.getStartedAt()); 
}

public ContainerStateTerminated build(){
    ContainerStateTerminated buildable = new ContainerStateTerminated(fluent.getContainerID(),fluent.getExitCode(),fluent.getFinishedAt(),fluent.getMessage(),fluent.getReason(),fluent.getSignal(),fluent.getStartedAt());
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