Interface ResourceBundleLocator
-
- All Known Implementing Classes:
AggregateResourceBundleLocator,CachingResourceBundleLocator,DelegatingResourceBundleLocator,PlatformResourceBundleLocator
public interface ResourceBundleLocatorUsed by
ResourceBundleMessageInterpolatorto load resource bundles containing message texts to be displayed in case of validation errors.The default implementation provides access to the bundle "ValidationMessages" as described in the BV specification. By providing additional implementations of this interface, alternative ways of bundle loading can be realized, e.g. by loading bundles based on XML files or from a database.
A
ResourceBundleLocatorimplementation must be thread-safe.- Author:
- Gunnar Morling
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceBundlegetResourceBundle(Locale locale)Returns a resource bundle for the given locale.
-
-
-
Method Detail
-
getResourceBundle
ResourceBundle getResourceBundle(Locale locale)
Returns a resource bundle for the given locale.- Parameters:
locale- A locale, for which a resource bundle shall be retrieved. Must not be null.- Returns:
- A resource bundle for the given locale. May be null, if no such bundle exists.
-
-