Uses of Class
org.apache.struts.action.ActionErrors
Package
Description
The action package is the core of the struts framework,
providing the "Controller" aspect of a MVC model.
Configurable commands that may be placed within the
request processor.
Commands which are particular to servlet processing.
The validator package provides a series of classes to validate
ActionForm
type of input.-
Uses of ActionErrors in org.apache.struts.action
Modifier and TypeMethodDescriptionActionForm.validate
(ActionMapping mapping, HttpServletRequest request) Can be used to validate the properties that have been set for this HTTP request, and return anActionErrors
object that encapsulates any validation errors that have been found.ActionForm.validate
(ActionMapping mapping, ServletRequest request) Can be used to validate the properties that have been set for this non-HTTP request, and return anActionErrors
object that encapsulates any validation errors that have been found.ModifierConstructorDescriptionActionErrors
(ActionErrors messages) Create anActionErrors
object initialized with the given messages. -
Uses of ActionErrors in org.apache.struts.chain.commands
Modifier and TypeMethodDescriptionprotected abstract ActionErrors
AbstractValidateActionForm.validate
(ActionContext context, ActionConfig actionConfig, ActionForm actionForm) Call thevalidate()
method of the specified form bean, and return the resultingActionErrors
object. -
Uses of ActionErrors in org.apache.struts.chain.commands.servlet
Modifier and TypeMethodDescriptionprotected ActionErrors
ValidateActionForm.validate
(ActionContext context, ActionConfig actionConfig, ActionForm actionForm) Call thevalidate()
method of the specified form bean, and return the resultingActionErrors
object. -
Uses of ActionErrors in org.apache.struts.validator
Modifier and TypeMethodDescriptionDynaValidatorForm.validate
(ActionMapping mapping, HttpServletRequest request) Validate the properties that have been set from this HTTP request, and return anActionErrors
object that encapsulates any validation errors that have been found.ValidatorForm.validate
(ActionMapping mapping, HttpServletRequest request) Validate the properties that have been set from this HTTP request, and return anActionErrors
object that encapsulates any validation errors that have been found.