public class ValidationAwareSupport extends Object implements ValidationAware, Serializable
Constructor and Description |
---|
ValidationAwareSupport() |
Modifier and Type | Method and Description |
---|---|
void |
addActionError(String anErrorMessage)
Add an Action-level error message to this Action.
|
void |
addActionMessage(String aMessage)
Add an Action-level message to this Action.
|
void |
addFieldError(String fieldName,
String errorMessage)
Add an error message for a given field.
|
void |
clearActionErrors()
Clears action errors list.
|
void |
clearErrors()
Clears all error list/maps.
|
void |
clearErrorsAndMessages()
Clears all error and messages list/maps.
|
void |
clearFieldErrors()
Clears field errors map.
|
void |
clearMessages()
Clears messages list.
|
Collection<String> |
getActionErrors()
Get the Collection of Action-level error messages for this action.
|
Collection<String> |
getActionMessages()
Get the Collection of Action-level messages for this action.
|
Map<String,List<String>> |
getFieldErrors()
Get the field specific errors associated with this action.
|
boolean |
hasActionErrors()
Check whether there are any Action-level error messages.
|
boolean |
hasActionMessages()
Checks whether there are any Action-level messages.
|
boolean |
hasErrors()
Checks whether there are any action errors or field errors.
|
boolean |
hasFieldErrors()
Check whether there are any field errors associated with this action.
|
void |
setActionErrors(Collection<String> errorMessages)
Set the Collection of Action-level String error messages.
|
void |
setActionMessages(Collection<String> messages)
Set the Collection of Action-level String messages (not errors).
|
void |
setFieldErrors(Map<String,List<String>> errorMap)
Set the field error map of fieldname (String) to Collection of String error messages.
|
public void setActionErrors(Collection<String> errorMessages)
ValidationAware
setActionErrors
in interface ValidationAware
errorMessages
- Collection of String error messagespublic Collection<String> getActionErrors()
ValidationAware
getActionErrors
in interface ValidationAware
public void setActionMessages(Collection<String> messages)
ValidationAware
setActionMessages
in interface ValidationAware
messages
- Collection of String messages (not errors).public Collection<String> getActionMessages()
ValidationAware
getActionMessages
in interface ValidationAware
public void setFieldErrors(Map<String,List<String>> errorMap)
ValidationAware
setFieldErrors
in interface ValidationAware
errorMap
- field error mappublic Map<String,List<String>> getFieldErrors()
ValidationAware
getFieldErrors
in interface ValidationAware
public void addActionError(String anErrorMessage)
ValidationAware
addActionError
in interface ValidationAware
anErrorMessage
- the error messagepublic void addActionMessage(String aMessage)
ValidationAware
addActionMessage
in interface ValidationAware
aMessage
- the messagepublic void addFieldError(String fieldName, String errorMessage)
ValidationAware
addFieldError
in interface ValidationAware
fieldName
- name of fielderrorMessage
- the error messagepublic boolean hasActionErrors()
ValidationAware
hasActionErrors
in interface ValidationAware
public boolean hasActionMessages()
ValidationAware
hasActionMessages
in interface ValidationAware
public boolean hasErrors()
ValidationAware
hasErrors
in interface ValidationAware
(hasActionErrors() || hasFieldErrors())
public boolean hasFieldErrors()
ValidationAware
hasFieldErrors
in interface ValidationAware
public void clearFieldErrors()
Will clear the map that contains field errors.
public void clearActionErrors()
Will clear the list that contains action errors.
public void clearMessages()
Will clear the list that contains action messages.
public void clearErrors()
Will clear the map and list that contain field errors and action errors.
public void clearErrorsAndMessages()
Will clear the maps/lists that contain field errors, action errors and action messages.
Copyright © 2000–2020 Apache Software Foundation. All rights reserved.