public interface IThreadContext
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
_rcsid |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
get(java.lang.Object key)
Retrieve a named object from the context.
|
void |
save(java.lang.Object key,
java.lang.Object object)
Set a named object into the context.
|
static final java.lang.String _rcsid
void save(java.lang.Object key,
java.lang.Object object)
key - is the name of the object (usually a string)object - is the object to save, or null if the object is to be
destroyed instead.java.lang.Object get(java.lang.Object key)
key - is the object's key (usually a string)