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

io.dropwizard.validation.valuehandling.GuavaOptionalValidatedValueUnwrapper Maven / Gradle / Ivy

There is a newer version: 0.40.13
Show newest version
package io.dropwizard.validation.valuehandling;

import com.fasterxml.classmate.ResolvedType;
import com.fasterxml.classmate.TypeResolver;
import com.google.common.base.Optional;
import org.hibernate.validator.spi.valuehandling.ValidatedValueUnwrapper;

import java.lang.reflect.Type;

/**
 * A {@link ValidatedValueUnwrapper} for Guava's {@link Optional}.
 *
 * Extracts the value contained by the {@link Optional} for validation, or produces {@code null}.
 */
public class GuavaOptionalValidatedValueUnwrapper extends ValidatedValueUnwrapper> {

    private final TypeResolver resolver = new TypeResolver();

    @Override
    public Object handleValidatedValue(final Optional optional) {
        return optional.orNull();
    }

    @Override
    public Type getValidatedValueType(final Type type) {
        final ResolvedType resolvedType = resolver.resolve(type);
        return resolvedType.typeParametersFor(Optional.class).get(0).getErasedType();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy