Package jakarta.validation
Interface ValidatorContext
-
public interface ValidatorContext
Represents the context that is used to createValidator
instances. A client may use methods of theValidatorContext
returned byValidatorFactory.usingContext()
to customize the context used to createValidator
instances (for instance establish different message interpolators or traversable resolvers).- Author:
- Emmanuel Bernard, Gunnar Morling, Guillaume Smet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValidatorContext
addValueExtractor(ValueExtractor<?> extractor)
Adds a value extractor to be used by theValidator
.ValidatorContext
clockProvider(ClockProvider clockProvider)
Defines theClockProvider
implementation used by theValidator
.ValidatorContext
constraintValidatorFactory(ConstraintValidatorFactory factory)
Defines the constraint validator factory implementation used by theValidator
.Validator
getValidator()
Returns an initializedValidator
instance respecting the defined state.ValidatorContext
messageInterpolator(MessageInterpolator messageInterpolator)
Defines the message interpolator implementation used by theValidator
.ValidatorContext
parameterNameProvider(ParameterNameProvider parameterNameProvider)
Defines the parameter name provider implementation used by theValidator
.ValidatorContext
traversableResolver(TraversableResolver traversableResolver)
Defines the traversable resolver implementation used by theValidator
.
-
-
-
Method Detail
-
messageInterpolator
ValidatorContext messageInterpolator(MessageInterpolator messageInterpolator)
Defines the message interpolator implementation used by theValidator
.If not set or if
null
is passed as a parameter, the message interpolator of theValidatorFactory
is used.- Parameters:
messageInterpolator
- theMessageInterpolator
used by theValidator
- Returns:
- self following the chaining method pattern
-
traversableResolver
ValidatorContext traversableResolver(TraversableResolver traversableResolver)
Defines the traversable resolver implementation used by theValidator
.If not set or if
null
is passed as a parameter, the traversable resolver of theValidatorFactory
is used.- Parameters:
traversableResolver
- theTraversableResolver
used by theValidator
- Returns:
- self following the chaining method pattern
-
constraintValidatorFactory
ValidatorContext constraintValidatorFactory(ConstraintValidatorFactory factory)
Defines the constraint validator factory implementation used by theValidator
. If not set or ifnull
is passed as a parameter, the constraint validator factory of theValidatorFactory
is used.- Parameters:
factory
- theConstraintValidatorFactory
used by theValidator
- Returns:
- self following the chaining method pattern
-
parameterNameProvider
ValidatorContext parameterNameProvider(ParameterNameProvider parameterNameProvider)
Defines the parameter name provider implementation used by theValidator
. If not set or ifnull
is passed as a parameter, the parameter name provider of theValidatorFactory
is used.- Parameters:
parameterNameProvider
- parameter name provider implementation.- Returns:
- self following the chaining method pattern
- Since:
- 1.1
-
clockProvider
ValidatorContext clockProvider(ClockProvider clockProvider)
Defines theClockProvider
implementation used by theValidator
. If not set or ifnull
is passed as a parameter, the clock provider of theValidatorFactory
is used.- Parameters:
clockProvider
-ClockProvider
implementation- Returns:
- self following the chaining method pattern
- Since:
- 2.0
-
addValueExtractor
ValidatorContext addValueExtractor(ValueExtractor<?> extractor)
Adds a value extractor to be used by theValidator
. Has priority over any extractor for the same type and type parameter detected through the service loader, given in the XML configuration or configured for the validator factory.- Parameters:
extractor
- value extractor implementation- Returns:
- self following the chaining method pattern
- Throws:
ValueExtractorDeclarationException
- if more than one extractor for the same type and type parameter is added- Since:
- 2.0
-
-