Package jakarta.validation
Interface MessageInterpolator
public interface MessageInterpolator
Interpolates a given constraint violation message.
Implementations should be as tolerant as possible on syntax errors. Implementations must be thread-safe.
- Author:
- Emmanuel Bernard, Hardy Ferentschik
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Information related to the interpolation context. -
Method Summary
Modifier and TypeMethodDescriptioninterpolate
(String messageTemplate, MessageInterpolator.Context context) Interpolates the message template based on the constraint validation context.interpolate
(String messageTemplate, MessageInterpolator.Context context, Locale locale) Interpolates the message template based on the constraint validation context.
-
Method Details
-
interpolate
Interpolates the message template based on the constraint validation context.The locale is defaulted according to the
MessageInterpolator
implementation. See the implementation documentation for more detail.- Parameters:
messageTemplate
- the message to interpolatecontext
- contextual information related to the interpolation- Returns:
- interpolated error message
-
interpolate
Interpolates the message template based on the constraint validation context. TheLocale
used is provided as a parameter.- Parameters:
messageTemplate
- the message to interpolatecontext
- contextual information related to the interpolationlocale
- the locale targeted for the message- Returns:
- interpolated error message
-