Package org.javalite.validation
Class Messages
java.lang.Object
org.javalite.validation.Messages
This class is used to pull messages from a resource bundle called
activejdbc_messages
.
It is primarily used by the validation framework, but client code can use it as well for other things.- Author:
- Igor Polevoy
-
Field Summary
-
Method Summary
-
Field Details
-
BUNDLE
-
-
Method Details
-
message
Looks for a localized property/message inactivejdbc_messages
bundle.- Parameters:
key
- key of the property.locale
- locale of a bundle, or null for default localeparams
- list of parameters for a message. The order of parameters in this list will correspond to the numeric order in the parameters listed in the message and has nothing to do with a physical order. This means that the first parameter in the list will correspond to{0}
, second to{1}
and so on.- Returns:
- localized message merged with parameters (if provided), or key if message not found.
-
message
Looks for a property/message inactivejdbc_messages
bundle.- Parameters:
key
- key of the property.params
- list of substitution parameters for a message.- Returns:
- message merged with parameters (if provided), or key if message not found.
-