| org.apache.struts2.StrutsStatics
All known Subclasses: org.apache.struts2.portlet.interceptor.PortletPreferencesInterceptor, org.apache.struts2.dispatcher.StrutsResultSupport, org.apache.struts2.dispatcher.ServletDispatcherResultTest, org.apache.struts2.interceptor.ServletConfigInterceptor, org.apache.struts2.ServletActionContextTest, org.apache.struts2.ServletActionContext, org.apache.struts2.portlet.interceptor.PortletAwareInterceptor, org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher, org.apache.struts2.dispatcher.ServletRedirectResultTest, org.apache.struts2.dispatcher.FilterDispatcher,
StrutsStatics | public interface StrutsStatics (Code) | | Constants used by Struts. The constants can be used to get or set objects
out of the action context or other collections.
Example:
ActionContext.getContext().put(HTTP_REQUEST, request);
or
ActionContext context = ActionContext.getContext();
HttpServletRequest request = (HttpServletRequest)context.get(HTTP_REQUEST);
|
HTTP_REQUEST | final public static String HTTP_REQUEST(Code) | | Constant for the HTTP request object.
|
HTTP_RESPONSE | final public static String HTTP_RESPONSE(Code) | | Constant for the HTTP response object.
|
STRUTS_PORTLET_CONTEXT | final public static String STRUTS_PORTLET_CONTEXT(Code) | | Constant for the PortletContext object
|
|
|