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

annotations.io.fabric8.kubernetes.api.model.GCEPersistentDiskVolumeSourceBuilder 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 GCEPersistentDiskVolumeSourceBuilder extends GCEPersistentDiskVolumeSourceFluent implements Builder{

     GCEPersistentDiskVolumeSourceFluent fluent;
public GCEPersistentDiskVolumeSourceBuilder(){
    this(new GCEPersistentDiskVolumeSource());
}
public GCEPersistentDiskVolumeSourceBuilder( GCEPersistentDiskVolumeSourceFluent fluent ){
    this(fluent, new GCEPersistentDiskVolumeSource());
}
public GCEPersistentDiskVolumeSourceBuilder( GCEPersistentDiskVolumeSourceFluent fluent , GCEPersistentDiskVolumeSource instance ){
    this.fluent = fluent; fluent.withFsType(instance.getFsType()); fluent.withPartition(instance.getPartition()); fluent.withPdName(instance.getPdName()); fluent.withReadOnly(instance.getReadOnly()); 
}
public GCEPersistentDiskVolumeSourceBuilder( GCEPersistentDiskVolumeSource instance ){
    this.fluent = this; this.withFsType(instance.getFsType()); this.withPartition(instance.getPartition()); this.withPdName(instance.getPdName()); this.withReadOnly(instance.getReadOnly()); 
}

public GCEPersistentDiskVolumeSource build(){
    GCEPersistentDiskVolumeSource buildable = new GCEPersistentDiskVolumeSource(fluent.getFsType(),fluent.getPartition(),fluent.getPdName(),fluent.isReadOnly());
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