ValidationAware classes can accept Action (class level) or field level error messages. Action level messages are kept
in a Collection. Field level error messages are kept in a Map from String field name to a List of field error msgs.
author: plightbo version: $Revision: 861 $
Method Summary
void
addActionError(String anErrorMessage) Add an Action-level error message to this Action.
Get the Collection of Action-level error messages for this action. Error messages should not
be added directly here, as implementations are free to return a new Collection or an
Unmodifiable Collection.
Collection of String error messages
Get the Collection of Action-level messages for this action. Messages should not be added
directly here, as implementations are free to return a new Collection or an Unmodifiable
Collection.
Collection of String messages
Get the field specific errors associated with this action. Error messages should not be added
directly here, as implementations are free to return a new Collection or an Unmodifiable
Collection.
Map with errors mapped from fieldname (String) to Collection of String error messages