
io.quarkus.hibernate.validator.ValidatorFactoryCustomizer Maven / Gradle / Ivy
package io.quarkus.hibernate.validator;
import org.hibernate.validator.BaseHibernateValidatorConfiguration;
/**
* Meant to be implemented by a CDI bean that provides arbitrary customization for the default
* {@link jakarta.validation.ValidatorFactory}.
*
* All implementations that are registered as CDI beans are taken into account when producing the default
* {@link jakarta.validation.ValidatorFactory}.
*
* Customizers are applied in the order of {@link jakarta.annotation.Priority}.
*/
public interface ValidatorFactoryCustomizer {
void customize(BaseHibernateValidatorConfiguration> configuration);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy