![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.validator.MessageInterpolator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$Id: $
package org.hibernate.validator;
/**
* Responsible for validator message interpolation (variable replacement etc)
* this extension point is useful if the call has some contextual informations to
* interpolate in validator messages
*
* @author Emmanuel Bernard
*/
public interface MessageInterpolator {
/**
* Interpolate a given validator message.
* The implementation is free to delegate to the default interpolator or not.
*/
String interpolate(String message, Validator validator, MessageInterpolator defaultInterpolator);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy