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

io.quarkus.hibernate.validator.ValidatorFactoryCustomizer Maven / Gradle / Ivy

Go to download

Validate object properties (field, getter) and method parameters for your beans (REST, CDI, Jakarta Persistence)

There is a newer version: 3.15.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy