public interface ConstraintMapping
| Modifier and Type | Method and Description |
|---|---|
<A extends Annotation> |
constraintDefinition(Class<A> annotationClass)
Starts defining
ConstraintValidators to be executed for the specified constraint (i.e. |
<C> TypeConstraintMappingContext<C> |
type(Class<C> beanClass)
Starts defining constraints on the specified bean class.
|
<C> TypeConstraintMappingContext<C> type(Class<C> beanClass)
C - The type to be configured.beanClass - The bean class on which to define constraints. All constraints defined after calling this method
are added to the bean of the type beanClass until the next call of type or annotation.<A extends Annotation> ConstraintDefinitionContext<A> constraintDefinition(Class<A> annotationClass)
ConstraintValidators to be executed for the specified constraint (i.e. annotation class).
Each constraint may only be configured once within all constraint mappings used for configuring one validator
factory.A - The annotation type to be configured.annotationClass - The annotation class on which to define the validators. This type must be an
@interface annotated with javax.validation.Constraint. All validators defined after calling
this method are added to the annotation of the type annotationClass until the next call
of type or annotation.Copyright © 2017 JBoss by Red Hat. All rights reserved.