Uses of Class
org.apache.struts.action.ActionServlet
Packages that use ActionServlet
Package
Description
The action package is the core of the struts framework,
providing the "Controller" aspect of a MVC model.
Contains the new
ComposableRequestProcessor
which was introduced in Struts 1.3.This package provides objects that encapsulate access to
the request and session-scoped resources to service
command processing.
The "config" package contains configuration objects that correspond to
elements that may be specified in the
struts-config.xml
module configuration file.The upload package facilities to upload files using
multi-part requests.
The Utilities package provides a variety of families of classes,
to solve problems that are commonly encountered in building web applications.
The validator package provides a series of classes to validate
ActionForm type of input.-
Uses of ActionServlet in org.apache.struts.action
Fields in org.apache.struts.action declared as ActionServletModifier and TypeFieldDescriptionprotected ActionServletAction.servletThe servlet to which we are attached.protected ActionServletActionForm.servletThe servlet instance to which we are attached.protected ActionServletActionServletWrapper.servletThe servlet instance to which we are attached.protected ActionServletRequestProcessor.servletThe servlet with which we are associated.Methods in org.apache.struts.action that return ActionServletModifier and TypeMethodDescriptionAction.getServlet()Return the servlet instance to which we are attached.protected ActionServletActionForm.getServlet()Return the servlet instance to which we are attached.Methods in org.apache.struts.action with parameters of type ActionServletModifier and TypeMethodDescriptionvoidPlugIn.init(ActionServlet servlet, ModuleConfig config) Receive notification that the specified module is being started up.voidRequestProcessor.init(ActionServlet servlet, ModuleConfig moduleConfig) Initialize this request processor instance.voidAction.setServlet(ActionServlet servlet) Set the servlet instance to which we are attached (ifservletis non-null), or release any allocated resources (ifservletis null).voidActionForm.setServlet(ActionServlet servlet) Set the servlet instance to which we are attached (ifservletis non-null).Constructors in org.apache.struts.action with parameters of type ActionServletModifierConstructorDescriptionActionServletWrapper(ActionServlet servlet) Create object and setservletproperty. -
Uses of ActionServlet in org.apache.struts.chain
Methods in org.apache.struts.chain with parameters of type ActionServletModifier and TypeMethodDescriptionvoidComposableRequestProcessor.init(ActionServlet servlet, ModuleConfig moduleConfig) Initialize this request processor instance.protected voidComposableRequestProcessor.initCatalogFactory(ActionServlet servlet, ModuleConfig moduleConfig) Establish the CatalogFactory which will be used to look up the catalog which has the request processing command. -
Uses of ActionServlet in org.apache.struts.chain.contexts
Methods in org.apache.struts.chain.contexts that return ActionServletModifier and TypeMethodDescriptionServletActionContext.getActionServlet()Return theActionServletfor this context.Methods in org.apache.struts.chain.contexts with parameters of type ActionServletModifier and TypeMethodDescriptionvoidServletActionContext.setActionServlet(ActionServlet servlet) Set theActionServletinstance for this context. -
Uses of ActionServlet in org.apache.struts.config
Methods in org.apache.struts.config with parameters of type ActionServletModifier and TypeMethodDescriptionFormBeanConfig.createActionForm(ActionServlet servlet) Create and return anActionForminstance appropriate to the information in thisFormBeanConfig. -
Uses of ActionServlet in org.apache.struts.upload
Methods in org.apache.struts.upload that return ActionServletModifier and TypeMethodDescriptionCommonsMultipartRequestHandler.getServlet()Retrieves the servlet with which this handler is associated.MultipartRequestHandler.getServlet()Get the ActionServlet instance.Methods in org.apache.struts.upload with parameters of type ActionServletModifier and TypeMethodDescriptionvoidCommonsMultipartRequestHandler.setServlet(ActionServlet servlet) Sets the servlet with which this handler is associated.voidMultipartRequestHandler.setServlet(ActionServlet servlet) Convenience method to set a reference to a working ActionServlet instance. -
Uses of ActionServlet in org.apache.struts.util
Methods in org.apache.struts.util with parameters of type ActionServletModifier and TypeMethodDescriptionstatic StringRequestUtils.actionIdURL(String originalPath, ModuleConfig moduleConfig, ActionServlet servlet) Returns the true path of the destination action if the specified forward is an action-aliased URL.static StringRequestUtils.actionIdURL(ForwardConfig forward, HttpServletRequest request, ActionServlet servlet) Returns the true path of the destination action if the specified forward is an action-aliased URL.static ActionFormRequestUtils.createActionForm(HttpServletRequest request, ActionMapping mapping, ModuleConfig moduleConfig, ActionServlet servlet) Create (if necessary) and return anActionForminstance appropriate for this request.static ActionFormRequestUtils.createActionForm(FormBeanConfig config, ActionServlet servlet) Create and return anActionForminstance appropriate to the information inconfig.static StringRequestUtils.getServletMapping(ActionServlet servlet) Retrieves the servlet mapping pattern for the specifiedActionServlet. -
Uses of ActionServlet in org.apache.struts.validator
Methods in org.apache.struts.validator with parameters of type ActionServletModifier and TypeMethodDescriptionvoidValidatorPlugIn.init(ActionServlet servlet, ModuleConfig config) Initialize and load our resources.