org.apache.struts.action |
|
Java Source File Name | Type | Comment |
Action.java | Class | 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. |
ActionErrors.java | Class | A class that encapsulates the error messages being reported by the
validate() method of an ActionForm . |
ActionForm.java | Class | An ActionForm is a JavaBean optionally associated with
one or more ActionMappings . |
ActionFormBean.java | Class | An ActionFormBean is the definition of a form bean that
is loaded from a <form-bean> element in the Struts
configuration file. |
ActionForward.java | Class | An ActionForward represents a destination to which the
controller, RequestProcessor, might be directed to perform a
RequestDispatcher.forward or HttpServletResponse.sendRedirect to, as a
result of processing activities of an Action class. |
ActionMapping.java | Class | An ActionMapping represents the information that the
controller, RequestProcessor , knows about the mapping of a
particular request to an instance of a particular Action
class. |
ActionMessage.java | Class | |
ActionMessages.java | Class | A class that encapsulates messages. |
ActionRedirect.java | Class | A subclass of
ActionForward which is designed for use in
redirecting requests, with support for adding parameters at runtime. |
ActionServlet.java | Class | ActionServlet provides the "controller" in the
Model-View-Controller (MVC) design pattern for web applications that is
commonly known as "Model 2". |
ActionServletWrapper.java | Class | Provide a wrapper around an
ActionServlet to expose only those
methods needed by other objects. |
DynaActionForm.java | Class | Specialized subclass of ActionForm that allows the creation
of form beans with dynamic sets of properties, without requiring the
developer to create a Java class for each type of form bean.
USAGE NOTE - Since Struts 1.1, the reset
method no longer initializes property values to those specified in
<form-property> elements in the Struts module
configuration file. |
DynaActionFormClass.java | Class | Implementation of DynaClass for DynaActionForm
classes that allow developers to define ActionForms without having to
individually code all of the classes. |
ExceptionHandler.java | Class | |
ForwardingActionForward.java | Class | |
InvalidCancelException.java | Class | 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. |
PlugIn.java | Interface | 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 init and destroy on the
corresponding
ActionServlet instance). |
RedirectingActionForward.java | Class | |
RequestActionMapping.java | Class | |
RequestProcessor.java | Class | RequestProcessor contains the processing logic that the
ActionServlet performs as it receives each servlet request from the
container. |
SessionActionMapping.java | Class | |
TestActionMessage.java | Class | Unit tests for the org.apache.struts.action.ActionMessage
class. |
TestActionMessages.java | Class | Unit tests for the org.apache.struts.action.ActionMessages
class. |
TestActionRedirect.java | Class | |
TestActionServlet.java | Class | Suite of unit tests for the org.apache.struts.action.ActionServlet
class. |
TestDynaActionForm.java | Class | Suite of unit tests for the org.apache.struts.action.DynaActionForm
class. |
TestDynaActionFormClass.java | Class | Suite of unit tests for the org.apache.struts.action.DynaActionFormClass
class. |