com.opensymphony.webwork
Interface WebWorkStatics

All Known Implementing Classes:
ActionTag, FilterDispatcher, ServletActionContext, ServletConfigInterceptor, ServletDispatcher, WebWorkResultSupport

public interface WebWorkStatics

Constants used by WebWork. The constants can be used to get or set objects out of the action context or other collections.

Example:

or

Author:
Patrick Lightbody, Bill Lynch (docs)

Field Summary
static String HTTP_REQUEST
          Constant for the HTTP request object.
static String HTTP_RESPONSE
          Constant for the HTTP response object.
static String PAGE_CONTEXT
          Constant for the JSP page context.
static String SERLVET_DISPATCHER
          Deprecated. spelling error, use SERVLET_DISPATCHER
static String SERVLET_CONFIG
          Constant for the servlet config object.
static String SERVLET_DISPATCHER
          Constant for an HTTP request dispatcher.
 

Field Detail

HTTP_REQUEST

public static final String HTTP_REQUEST
Constant for the HTTP request object.

See Also:
Constant Field Values

HTTP_RESPONSE

public static final String HTTP_RESPONSE
Constant for the HTTP response object.

See Also:
Constant Field Values

SERVLET_DISPATCHER

public static final String SERVLET_DISPATCHER
Constant for an HTTP request dispatcher.

See Also:
Constant Field Values

SERLVET_DISPATCHER

public static final String SERLVET_DISPATCHER
Deprecated. spelling error, use SERVLET_DISPATCHER

See Also:
Constant Field Values

SERVLET_CONFIG

public static final String SERVLET_CONFIG
Constant for the servlet config object.

See Also:
Constant Field Values

PAGE_CONTEXT

public static final String PAGE_CONTEXT
Constant for the JSP page context.

See Also:
Constant Field Values

WebWork Project Page