java.lang .Object org.apache.turbine.services.pull.util .SessionData clear public void clear()(Code) Clears all data
containsKey public boolean containsKey(String key)(Code) Determines is a given key is stored.
Parameters: key - the key to check for true if the key was found
get public Object get(String key)(Code) Gets the data stored under the key. Null will be returned if the
key does not exist or if null was stored under the key.
To check for a key with a null value use
SessionData.containsKey .
Parameters: key - key under which the data is stored. Object
stored under the key.
init public void init(Object data)(Code) Initialize the application tool.
Parameters: data - initialization data
iterator public Iterator iterator()(Code) Gets a iterator for the keys.
Iterator
for the keys
put public void put(String key, Object value)(Code) Stores the data. If the key already exists, the value will be
overwritten.
Parameters: key - key under which the data will be stored.Parameters: value - data to store under the key. Null values are allowed.
refresh public void refresh()(Code) Refresh the application tool.