public class DefaultConstraintMapping extends Object implements ConstraintMapping
ConstraintMapping
.Constructor and Description |
---|
DefaultConstraintMapping() |
Modifier and Type | Method and Description |
---|---|
<A extends Annotation> |
constraintDefinition(Class<A> annotationClass)
Starts defining
ConstraintValidator s to be executed for the specified constraint (i.e. |
AnnotationProcessingOptionsImpl |
getAnnotationProcessingOptions() |
Set<BeanConfiguration<?>> |
getBeanConfigurations(ConstraintHelper constraintHelper,
TypeResolutionHelper typeResolutionHelper,
ValueExtractorManager valueExtractorManager)
Returns all bean configurations configured through this constraint mapping.
|
Set<Class<?>> |
getConfiguredTypes() |
Set<ConstraintDefinitionContribution<?>> |
getConstraintDefinitionContributions() |
<C> TypeConstraintMappingContext<C> |
type(Class<C> type)
Starts defining constraints on the specified bean class.
|
public final <C> TypeConstraintMappingContext<C> type(Class<C> type)
ConstraintMapping
type
in interface ConstraintMapping
C
- The type to be configured.type
- 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
.public final AnnotationProcessingOptionsImpl getAnnotationProcessingOptions()
public Set<BeanConfiguration<?>> getBeanConfigurations(ConstraintHelper constraintHelper, TypeResolutionHelper typeResolutionHelper, ValueExtractorManager valueExtractorManager)
constraintHelper
- constraint helper required for building constraint descriptorstypeResolutionHelper
- type resolution helpervalueExtractorManager
- the ValueExtractor
managerBeanConfiguration
s with an element for each type configured through this mappingpublic <A extends Annotation> ConstraintDefinitionContext<A> constraintDefinition(Class<A> annotationClass)
ConstraintMapping
ConstraintValidator
s 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.constraintDefinition
in interface ConstraintMapping
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
.public Set<ConstraintDefinitionContribution<?>> getConstraintDefinitionContributions()
Copyright © 2021 JBoss by Red Hat. All rights reserved.