org.hibernate.validator.cfg.context.ConstraintDefinitionTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-validator Show documentation
Show all versions of hibernate-validator Show documentation
JPMS Module-Info's for a few of the Jakarta Libraries. These will be removed as time goes by
/*
* Hibernate Validator, declare and validate application constraints
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
package org.hibernate.validator.cfg.context;
import java.lang.annotation.Annotation;
/**
* Facet of a constraint definition creational context which allows to select the constraint (annotation type) to
* which the next operations shall apply.
*
* @author Yoann Rodiere
*/
public interface ConstraintDefinitionTarget {
/**
* Selects the constraint (i.e. annotation type) to which the next operations shall apply. A given constraint
* may only be configured once.
*
* @param The annotation type to select.
* @param annotationType The annotation type to select. This type must be an {@code @interface} annotated with
* {@code jakarta.validation.Constraint}.
*
* @return A creational context representing the selected constraint.
*/
ConstraintDefinitionContext constraintDefinition(Class annotationType);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy