io.micronaut.validation.validator.constraints.ConstraintValidatorRegistry Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.validation.validator.constraints;
import io.micronaut.core.annotation.NonNull;
import javax.validation.ValidationException;
import java.lang.annotation.Annotation;
import java.util.Optional;
/**
* Interface for a class that is a registry of contraint validator.
*
* @author graemerocher
* @since 1.2
*/
public interface ConstraintValidatorRegistry {
/**
* Finds a constraint validator for the given type and target type.
* @param constraintType The annotation type of the constraint.
* @param targetType The type being validated.
* @param The annotation type
* @param The target type
* @return The validator
*/
@NonNull
Optional> findConstraintValidator(
@NonNull Class constraintType,
@NonNull Class targetType);
/**
* Finds a constraint validator for the given type and target type.
* @param constraintType The annotation type of the constraint.
* @param targetType The type being validated.
* @param The annotation type
* @param The target type
* @return The validator
* @throws ValidationException if no validator is present
*/
@NonNull
default ConstraintValidator getConstraintValidator(
@NonNull Class constraintType,
@NonNull Class targetType) {
return findConstraintValidator(constraintType, targetType)
.orElseThrow(() -> new ValidationException("No constraint validator present able to validate constraint [" + constraintType + "] on type: " + targetType));
}
}