All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.beanvalidation.tck.tests.xmlconfiguration.XmlDefinedMessageInterpolator Maven / Gradle / Ivy

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