org.xwiki.context
Class ExecutionContext
java.lang.Object
org.xwiki.context.ExecutionContext
public class ExecutionContext
- extends Object
Contains all state data related to the current user action. Note that the execution context is independent of the
environment and all environment-dependent data are stored in the Container component instead.
- Since:
- 1.5M2
- Version:
- $Id: e63a8ebab598978d32dd9bb95aeabe5aa8ca5c6e $
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ExecutionContext
public ExecutionContext()
getProperty
public Object getProperty(String key)
- Parameters:
key - the key under which is stored the property to retrieve
- Returns:
- the property matching the passed key
getProperties
public Map<String,Object> getProperties()
- Returns:
- all the context properties
removeProperty
public void removeProperty(String key)
- Parameters:
key - remove the property whose key matches the passed key
setProperty
public void setProperty(String key,
Object value)
- Parameters:
key - the key under which to save the passed property valuevalue - the value to set
setProperties
public void setProperties(Map<String,Object> properties)
- Parameters:
properties - the properties to add to the context
Copyright © 2004-2012 XWiki. All Rights Reserved.