javax.validation

Interface ValidatorContext


  • public interface ValidatorContext
    Represents the context that is used to create Validator instances. A client may use methods of the ValidatorContext returned by ValidatorFactory.usingContext() to customize the context used to create Validator instances (for instance establish different message interpolators or traversable resolvers).
    Author:
    Emmanuel Bernard, Gunnar Morling
    • Method Detail

      • messageInterpolator

        ValidatorContext messageInterpolator(MessageInterpolator messageInterpolator)
        Defines the message interpolator implementation used by the Validator.

        If not set or if null is passed as a parameter, the message interpolator of the ValidatorFactory is used.

        Parameters:
        messageInterpolator - the MessageInterpolator used by the Validator
        Returns:
        self following the chaining method pattern
      • traversableResolver

        ValidatorContext traversableResolver(TraversableResolver traversableResolver)
        Defines the traversable resolver implementation used by the Validator.

        If not set or if null is passed as a parameter, the traversable resolver of the ValidatorFactory is used.

        Parameters:
        traversableResolver - the TraversableResolver used by the Validator
        Returns:
        self following the chaining method pattern
      • parameterNameProvider

        ValidatorContext parameterNameProvider(ParameterNameProvider parameterNameProvider)
        Defines the parameter name provider implementation used by the Validator. If not set or if null is passed as a parameter, the parameter name provider of the ValidatorFactory is used.
        Parameters:
        parameterNameProvider - parameter name provider implementation.
        Returns:
        self following the chaining method pattern
        Since:
        1.1
      • getValidator

        Validator getValidator()
        Returns an initialized Validator instance respecting the defined state. Validator instances can be pooled and shared by the implementation.
        Returns:
        contextualized Validator

Document created the 11/06/2005, last modified the 18/08/2025
Source of the printed document:https://www.gaudry.be/en/java-api-javaee-rf-javax/validation/validatorcontext.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Manuel PHP : https://docs.oracle.com

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author of this site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.