Package | Description |
---|---|
org.hibernate.validator |
Bootstrap classes HibernateValidator and HibernateValidatorConfiguration which uniquely identify Hibernate Validator
and allow to configure it.
|
org.hibernate.validator.internal.engine |
Implementations for the core interfaces of JSR-380.
|
org.hibernate.validator.messageinterpolation |
Implementations of the MessageInterpolator interface in particular ResourceBundleMessageInterpolator which can be
used by custom implementations of the interface for delegation.
|
org.hibernate.validator.resourceloading |
ResourceBundleLocator interface and its various implementations.
|
Modifier and Type | Method and Description |
---|---|
ResourceBundleLocator |
HibernateValidatorConfiguration.getDefaultResourceBundleLocator()
Returns the
ResourceBundleLocator used by the
default message
interpolator to load user-provided resource bundles. |
Modifier and Type | Method and Description |
---|---|
ResourceBundleLocator |
ConfigurationImpl.getDefaultResourceBundleLocator() |
Constructor and Description |
---|
AbstractMessageInterpolator(ResourceBundleLocator userResourceBundleLocator) |
AbstractMessageInterpolator(ResourceBundleLocator userResourceBundleLocator,
ResourceBundleLocator contributorResourceBundleLocator)
MessageInterpolator taking two resource bundle locators. |
AbstractMessageInterpolator(ResourceBundleLocator userResourceBundleLocator,
ResourceBundleLocator contributorResourceBundleLocator,
boolean cacheMessages)
MessageInterpolator taking two resource bundle locators. |
ResourceBundleMessageInterpolator(ResourceBundleLocator userResourceBundleLocator) |
ResourceBundleMessageInterpolator(ResourceBundleLocator userResourceBundleLocator,
boolean cachingEnabled) |
ResourceBundleMessageInterpolator(ResourceBundleLocator userResourceBundleLocator,
boolean cachingEnabled,
javax.el.ExpressionFactory expressionFactory) |
ResourceBundleMessageInterpolator(ResourceBundleLocator userResourceBundleLocator,
ResourceBundleLocator contributorResourceBundleLocator) |
ResourceBundleMessageInterpolator(ResourceBundleLocator userResourceBundleLocator,
ResourceBundleLocator contributorResourceBundleLocator,
boolean cachingEnabled) |
Modifier and Type | Class and Description |
---|---|
class |
AggregateResourceBundleLocator
A
ResourceBundleLocator implementation that provides access
to multiple source ResourceBundle s by merging them into one
aggregated bundle. |
class |
CachingResourceBundleLocator
A
ResourceBundleLocator implementation that wraps around another
locator and caches values retrieved from that locator. |
class |
DelegatingResourceBundleLocator
Abstract base for all
ResourceBundleLocator implementations, that
wish to delegate to some other locator. |
class |
PlatformResourceBundleLocator
A resource bundle locator, that loads resource bundles by invoking
ResourceBundle.loadBundle(String, Local, ClassLoader) . |
Constructor and Description |
---|
AggregateResourceBundleLocator(java.util.List<java.lang.String> bundleNames,
ResourceBundleLocator delegate)
Creates a locator that delivers a resource bundle merged from the given
list of source bundles.
|
AggregateResourceBundleLocator(java.util.List<java.lang.String> bundleNames,
ResourceBundleLocator delegate,
java.lang.ClassLoader classLoader)
Creates a locator that delivers a resource bundle merged from the given
list of source bundles.
|
CachingResourceBundleLocator(ResourceBundleLocator delegate)
Creates a new CachingResourceBundleLocator.
|
DelegatingResourceBundleLocator(ResourceBundleLocator delegate)
Creates a new
DelegatingResourceBundleLocator . |
Copyright © 2007-2022 Red Hat, Inc. All Rights Reserved