Uses of Interface
org.hibernate.validator.spi.resourceloading.ResourceBundleLocator
Packages that use ResourceBundleLocator
Package
Description
Bootstrap classes HibernateValidator and HibernateValidatorConfiguration which uniquely identify Hibernate Validator
and allow to configure it.
Implementations for the core interfaces of Jakarta Bean Validation.
Implementations of the MessageInterpolator interface in particular ResourceBundleMessageInterpolator which can be
used by custom implementations of the interface for delegation.
ResourceBundleLocator interface and its various implementations.
-
Uses of ResourceBundleLocator in org.hibernate.validator
Methods in org.hibernate.validator that return ResourceBundleLocatorModifier and TypeMethodDescriptionBaseHibernateValidatorConfiguration.getDefaultResourceBundleLocator()
Returns theResourceBundleLocator
used by thedefault message interpolator
to load user-provided resource bundles. -
Uses of ResourceBundleLocator in org.hibernate.validator.internal.engine
Methods in org.hibernate.validator.internal.engine that return ResourceBundleLocatorModifier and TypeMethodDescriptionfinal ResourceBundleLocator
AbstractConfigurationImpl.getDefaultResourceBundleLocator()
-
Uses of ResourceBundleLocator in org.hibernate.validator.messageinterpolation
Constructors in org.hibernate.validator.messageinterpolation with parameters of type ResourceBundleLocatorModifierConstructorDescriptionAbstractMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator) MessageInterpolator
taking a resource bundle locator.AbstractMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, Set<Locale> locales, Locale defaultLocale, LocaleResolver localeResolver, boolean preloadResourceBundles) MessageInterpolator
taking a resource bundle locator.AbstractMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, ResourceBundleLocator contributorResourceBundleLocator) MessageInterpolator
taking two resource bundle locators.AbstractMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, ResourceBundleLocator contributorResourceBundleLocator, boolean cacheMessages) MessageInterpolator
taking two resource bundle locators.AbstractMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, ResourceBundleLocator contributorResourceBundleLocator, Set<Locale> localesToInitialize, Locale defaultLocale, LocaleResolver localeResolver, boolean preloadResourceBundles) MessageInterpolator
taking two resource bundle locators.AbstractMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, ResourceBundleLocator contributorResourceBundleLocator, Set<Locale> locales, Locale defaultLocale, LocaleResolver localeResolver, boolean preloadResourceBundles, boolean cacheMessages) MessageInterpolator
taking two resource bundle locators.ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator) ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, boolean cachingEnabled) ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, boolean cachingEnabled, ExpressionFactory expressionFactory) ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, Set<Locale> locales, Locale defaultLocale, LocaleResolver localeResolver, boolean preloadResourceBundles) ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, Set<Locale> locales, Locale defaultLocale, LocaleResolver localeResolver, boolean preloadResourceBundles, boolean cachingEnabled) ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, Set<Locale> locales, Locale defaultLocale, LocaleResolver localeResolver, boolean preloadResourceBundles, boolean cachingEnabled, ExpressionFactory expressionFactory) ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, ResourceBundleLocator contributorResourceBundleLocator) ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, ResourceBundleLocator contributorResourceBundleLocator, boolean cachingEnabled) ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, ResourceBundleLocator contributorResourceBundleLocator, Set<Locale> locales, Locale defaultLocale, LocaleResolver localeResolver, boolean preloadResourceBundles) ResourceBundleMessageInterpolator
(ResourceBundleLocator userResourceBundleLocator, ResourceBundleLocator contributorResourceBundleLocator, Set<Locale> locales, Locale defaultLocale, LocaleResolver localeResolver, boolean preloadResourceBundles, boolean cachingEnabled) -
Uses of ResourceBundleLocator in org.hibernate.validator.resourceloading
Classes in org.hibernate.validator.resourceloading that implement ResourceBundleLocatorModifier and TypeClassDescriptionclass
AResourceBundleLocator
implementation that provides access to multiple sourceResourceBundle
s by merging them into one aggregated bundle.class
AResourceBundleLocator
implementation that wraps around another locator and caches values retrieved from that locator.class
Abstract base for allResourceBundleLocator
implementations, that wish to delegate to some other locator.class
A resource bundle locator, that loads resource bundles by invokingResourceBundle.loadBundle(String, Local, ClassLoader)
.Constructors in org.hibernate.validator.resourceloading with parameters of type ResourceBundleLocatorModifierConstructorDescriptionAggregateResourceBundleLocator
(List<String> bundleNames, boolean preloadResourceBundles, Set<Locale> localesToInitialize, ResourceBundleLocator delegate) Creates a locator that delivers a resource bundle merged from the given list of source bundles.AggregateResourceBundleLocator
(List<String> bundleNames, boolean preloadResourceBundles, Set<Locale> localesToInitialize, ResourceBundleLocator delegate, ClassLoader classLoader) Creates a locator that delivers a resource bundle merged from the given list of source bundles.AggregateResourceBundleLocator
(List<String> bundleNames, ResourceBundleLocator delegate) Creates a locator that delivers a resource bundle merged from the given list of source bundles.AggregateResourceBundleLocator
(List<String> bundleNames, ResourceBundleLocator delegate, ClassLoader classLoader) Creates a locator that delivers a resource bundle merged from the given list of source bundles.Creates a new CachingResourceBundleLocator.Creates a newDelegatingResourceBundleLocator
.