Method Summary |
|
public Object | get(Object key) Returns a value that is stored in the current ActionContext by doing a lookup using the value's key.
Parameters: key - the key used to find the value. |
public ActionInvocation | getActionInvocation() Gets the action invocation (the execution state). |
public Map | getApplication() Returns a Map of the ServletContext when in a servlet environment or a generic application level Map otherwise. |
public static ActionContext | getContext() Returns the ActionContext specific to the current thread. |
public Map | getContextMap() Gets the context map. |
public Map | getConversionErrors() Gets the map of conversion errors which occurred when executing the action. |
public Locale | getLocale() Gets the Locale of the current action. |
public String | getName() Gets the name of the current Action. |
public Map | getParameters() Returns a Map of the HttpServletRequest parameters when in a servlet environment or a generic Map of
parameters otherwise. |
public Map | getSession() Gets the Map of HttpSession values when in a servlet environment or a generic session map otherwise. |
public OgnlValueStack | getValueStack() Gets the OGNL value stack. |
public void | put(Object key, Object value) Stores a value in the current ActionContext. |
public void | setActionInvocation(ActionInvocation actionInvocation) Sets the action invocation (the execution state). |
public void | setApplication(Map application) Sets the action's application context. |
public static void | setContext(ActionContext context) Sets the action context for the current thread. |
public void | setContextMap(Map contextMap) Sets the action's context map. |
public void | setConversionErrors(Map conversionErrors) Sets conversion errors which occurred when executing the action. |
public void | setLocale(Locale locale) Sets the Locale for the current action. |
public void | setName(String name) Sets the name of the current Action in the ActionContext. |
public void | setParameters(Map parameters) Sets the action parameters. |
public void | setSession(Map session) Sets a map of action session values. |
public void | setValueStack(OgnlValueStack stack) Sets the OGNL value stack. |