/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
 */
package org.hibernate.validator.spi.messageinterpolation;

import java.util.Locale;
import java.util.Set;

import org.hibernate.validator.Incubating;

Context used for locale resolution.
Author:Guillaume Smet
Since:6.1.1
/** * Context used for locale resolution. * * @author Guillaume Smet * @since 6.1.1 */
@Incubating public interface LocaleResolverContext { Set<Locale> getSupportedLocales(); Locale getDefaultLocale(); }