
org.hibernate.beanvalidation.tck.tests.xmlconfiguration.XmlDefinedMessageInterpolator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beanvalidation-tck-tests Show documentation
Show all versions of beanvalidation-tck-tests Show documentation
Jakarta Bean Validation TCK test suite
The newest version!
/**
* Jakarta Bean Validation TCK
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
package org.hibernate.beanvalidation.tck.tests.xmlconfiguration;
import java.util.Locale;
import jakarta.validation.MessageInterpolator;
/**
* @author Hardy Ferentschik
*/
public class XmlDefinedMessageInterpolator implements MessageInterpolator {
public static final String STATIC_INTERPOLATION_STRING = "Interpolator defined in xml was used.";
public String interpolate(String messageTemplate, Context context) {
return STATIC_INTERPOLATION_STRING;
}
public String interpolate(String messageTemplate, Context context, Locale locale) {
return STATIC_INTERPOLATION_STRING;
}
public class NoDefaultConstructorInterpolator extends XmlDefinedMessageInterpolator {
public NoDefaultConstructorInterpolator(String foo) {
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy