The action package is the core of the struts framework, providing the "Controller" aspect of a MVC model.
See: Description
| Interface Summary | |
|---|---|
| PlugIn |
A PlugIn is a configuration wrapper for a
module-specific resource or service that needs to be notified about
application startup and application shutdown events (corresponding to when
the container calls |
| Class Summary | |
|---|---|
| Action |
An Action is an adapter between the contents of an incoming HTTP request and the corresponding business logic that should be executed to process this request. |
| ActionError |
An encapsulation of an individual error message returned by the
The placeholder objects are referenced in the message text using the same
syntax used by the JDK |
| ActionErrors |
A class that encapsulates the error messages being reported by
the |
| ActionForm |
An ActionForm is a JavaBean optionally associated with
one or more |
| ActionFormBean |
An ActionFormBean is the definition of a form bean that
is loaded from a |
| ActionForward |
An ActionForward represents a destination to which the
controller, |
| ActionMapping |
An ActionMapping represents the information that the
controller, |
| ActionMessage |
An encapsulation of an individual message returned by the
|
| ActionMessages |
A class that encapsulates messages. |
| ActionMessages.ActionMessageItem |
This class is used to store a set of messages associated with a property/key and the position it was initially added to list. |
| ActionRedirect | A subclass of ActionForward which is designed for use in redirecting requests, with support for adding parameters at runtime. |
| ActionServlet |
ActionServlet provides the "controller" in the Model-View-Controller (MVC) design pattern for web applications that is commonly known as "Model 2". |
| ActionServletWrapper |
Provide a wrapper around an ActionServlet to expose only those methods needed by other objects. |
| DynaActionForm |
Specialized subclass of USAGE NOTE - Since Struts 1.1, the
|
| DynaActionFormClass |
Implementation of |
| ExceptionHandler |
An ExceptionHandler is configured in the Struts
configuration file to handle a specific type of exception thrown
by an |
| ForwardingActionForward |
A subclass of |
| InvalidCancelException |
Thrown when a token generated by the Cancel tag is found in the request, but the cancellable property for the Action Mapping is not set. |
| RedirectingActionForward |
A subclass of ActionForward that defaults the
|
| RequestActionMapping |
Subclass of |
| RequestProcessor |
RequestProcessor contains the processing logic that the ActionServlet performs as it receives each servlet request from the container. |
| SessionActionMapping |
Subclass of |
The action package is the core of the struts framework, providing the "Controller" aspect of a MVC model.