public class ActionContext extends Object implements Serializable
The ActionContext is the context in which an Action
is executed. Each context is basically a
container of objects an action needs for execution like the session, parameters, locale, etc.
The ActionContext is thread local which means that values stored in the ActionContext are
unique per thread. See the ThreadLocal
class for more information. The benefit of
this is you don't need to worry about a user specific action context, you just get it:
ActionContext context = ActionContext.getContext();
Finally, because of the thread local usage you don't need to worry about making your actions thread safe.
Modifier and Type | Field and Description |
---|---|
static String |
ACTION_INVOCATION
Constant for the action's
invocation context. |
static String |
ACTION_NAME
Constant for the name of the action being executed.
|
static String |
APPLICATION
Constant for the action's application context.
|
static String |
CONTAINER
Constant for the container
|
static String |
CONVERSION_ERRORS
Constant for the map of type conversion errors.
|
static String |
LOCALE
Constant for the action's locale.
|
static String |
PARAMETERS
Constant for the action's parameters.
|
static String |
SESSION
Constant for the action's session.
|
static String |
VALUE_STACK
Constant for the
OGNL value stack . |
Constructor and Description |
---|
ActionContext(Map<String,Object> context)
Creates a new ActionContext initialized with another context.
|
Modifier and Type | Method and Description |
---|---|
Object |
get(String key)
Returns a value that is stored in the current ActionContext by doing a lookup using the value's key.
|
ActionInvocation |
getActionInvocation()
Gets the action invocation (the execution state).
|
Map<String,Object> |
getApplication()
Returns a Map of the ServletContext when in a servlet environment or a generic application level Map otherwise.
|
Container |
getContainer()
Sets the container for this request
|
static ActionContext |
getContext()
Returns the ActionContext specific to the current thread.
|
Map<String,Object> |
getContextMap()
Gets the context map.
|
Map<String,ConversionData> |
getConversionErrors()
Gets the map of conversion errors which occurred when executing the action.
|
<T> T |
getInstance(Class<T> type) |
Locale |
getLocale()
Gets the Locale of the current action.
|
String |
getName()
Gets the name of the current Action.
|
HttpParameters |
getParameters()
Returns a Map of the HttpServletRequest parameters when in a servlet environment or a generic Map of
parameters otherwise.
|
Map<String,Object> |
getSession()
Gets the Map of HttpSession values when in a servlet environment or a generic session map otherwise.
|
ValueStack |
getValueStack()
Gets the OGNL value stack.
|
void |
put(String key,
Object value)
Stores a value in the current ActionContext.
|
void |
setActionInvocation(ActionInvocation actionInvocation)
Sets the action invocation (the execution state).
|
void |
setApplication(Map<String,Object> application)
Sets the action's application context.
|
void |
setContainer(Container cont)
Gets the container for this request
|
static void |
setContext(ActionContext context)
Sets the action context for the current thread.
|
void |
setConversionErrors(Map<String,ConversionData> conversionErrors)
Sets conversion errors which occurred when executing the action.
|
void |
setLocale(Locale locale)
Sets the Locale for the current action.
|
void |
setName(String name)
Sets the name of the current Action in the ActionContext.
|
void |
setParameters(HttpParameters parameters)
Sets the action parameters.
|
void |
setSession(Map<String,Object> session)
Sets a map of action session values.
|
void |
setValueStack(ValueStack stack)
Sets the OGNL value stack.
|
public static final String ACTION_NAME
public static final String VALUE_STACK
OGNL value stack
.public static final String SESSION
public static final String APPLICATION
public static final String PARAMETERS
public static final String LOCALE
public static final String ACTION_INVOCATION
invocation
context.public static final String CONVERSION_ERRORS
public static final String CONTAINER
public void setActionInvocation(ActionInvocation actionInvocation)
actionInvocation
- the action execution state.public ActionInvocation getActionInvocation()
public void setApplication(Map<String,Object> application)
application
- the action's application context.public Map<String,Object> getApplication()
public static void setContext(ActionContext context)
context
- the action context.public static ActionContext getContext()
public Map<String,Object> getContextMap()
public void setConversionErrors(Map<String,ConversionData> conversionErrors)
conversionErrors
- a Map of errors which occurred when executing the action.public Map<String,ConversionData> getConversionErrors()
public void setLocale(Locale locale)
locale
- the Locale for the current action.public Locale getLocale()
default locale
is used.public void setName(String name)
name
- the name of the current action.public String getName()
public void setParameters(HttpParameters parameters)
parameters
- the parameters for the current action.public HttpParameters getParameters()
public void setSession(Map<String,Object> session)
session
- the session values.public Map<String,Object> getSession()
public void setValueStack(ValueStack stack)
stack
- the OGNL value stack.public ValueStack getValueStack()
public void setContainer(Container cont)
cont
- The containerpublic Container getContainer()
public <T> T getInstance(Class<T> type)
public Object get(String key)
key
- the key used to find the value.Copyright © 2000–2020 Apache Software Foundation. All rights reserved.