Package com.opensymphony.webwork.dispatcher

Classes for action dispatching in WebWork (the Controller part of MVC).

See:
          Description

Interface Summary
ShutDownListener An interface to be implemented if require to get informed when WebWork shuts down, It's being hooked up through FilterDispatcher.destroy() -> DispatcherUtils.cleanup() methods calls.
StartUpListener An interface to be implemented if require to get informed when WebWork starts up, It's being hooked up through FilterDispatcher.init(javax.servlet.FilterConfig) -> DispatcherUtils.init(javax.servlet.ServletContext) methods calls.
 

Class Summary
ActionContextCleanUp Special filter designed to work with the FilterDispatcher and allow for easier integration with SiteMesh.
ApplicationMap A simple implementation of the Map interface to handle a collection of attributes and init parameters in a ServletContext object.
ChartResult A custom Result type for chart data.
DefaultActionSupport A simple action support class that sets properties to be able to serve
DispatcherUtils A utility class whereby FilterDispatcher delegate most of its tasks to.
FilterDispatcher Master filter for WebWork that handles four distinct responsibilities: Executing actions Cleaning up the ActionContext (see note) Serving static content Kicking off XWork's IoC for the request lifecycle

IMPORTANT: this filter must be mapped to all requests.

FilterDispatcherCompatWeblogic61 When running Weblogic Server 6.1, this class should be specified in web.xml instead of FilterDispatcher.
FlashResult A flash result, that save the current action into the http session before invoking super.doExecute(...), which actually just do a redirect to a specific location just as a normal ServletRedirectResult would.
HttpHeaderResult A custom Result type for evaluating HTTP headers against the ValueStack.
PlainTextResult A result that send the content out as plain text.
RequestMap A simple implementation of the Map interface to handle a collection of request attributes.
ServletActionRedirectResult This result uses the ActionMapper provided by the ActionMapperFactory to redirect the browser to a URL that invokes the specified action and (optional) namespace.
ServletDispatcher Deprecated. use FilterDispatcher instead
ServletDispatcherResult Includes or forwards to a view (usually a jsp).
ServletRedirectResult Calls the sendRedirect method to the location specified.
SessionMap A simple implementation of the Map interface to handle a collection of HTTP session attributes.
StreamResult A custom Result type for send raw data (via an InputStream) directly to the HttpServletResponse.
VelocityResult Using the Servlet container's JspFactory, this result mocks a JSP execution environment and then displays a Velocity template that will be streamed directly to the servlet output.
WebWorkRequestWrapper All WebWork requests are wrapped with this class, which provides simple JSTL accessibility.
WebWorkResultSupport A base class for all WebWork action execution results.
 

Package com.opensymphony.webwork.dispatcher Description

Classes for action dispatching in WebWork (the Controller part of MVC).


WebWork Project Page