|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jboss.invocation.InvocationContext
The Invocation Context
Describes the context in which this Invocation is being executed in the interceptors
The heart of it is the payload map that can contain anything we then put readers on them. The first "reader" is this "Invocation" object that can interpret the data in it.
Essentially we can carry ANYTHING from the client to the server, we keep a series of redifined variables and method calls to get at the pointers. But really it is just a repository of objects.
Field Summary | |
Map |
context
|
Constructor Summary | |
InvocationContext()
Exposed for externalization only. |
|
InvocationContext(Map context)
Invocation creation |
Method Summary | |
Object |
getCacheId()
|
Invoker |
getInvoker()
|
String |
getInvokerProxyBinding()
|
Object |
getObjectName()
|
Object |
getValue(Object key)
Get a value from the stores. |
void |
setCacheId(Object id)
Return the invocation target ID. |
void |
setInvoker(Invoker invoker)
|
void |
setInvokerProxyBinding(String binding)
|
void |
setObjectName(Object objectName)
A container for server side association. |
void |
setValue(Object key,
Object value)
The generic store of variables |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public Map context
Constructor Detail |
public InvocationContext()
public InvocationContext(Map context)
Method Detail |
public void setValue(Object key, Object value)
public Object getValue(Object key)
public void setObjectName(Object objectName)
public Object getObjectName()
public void setCacheId(Object id)
public Object getCacheId()
public void setInvoker(Invoker invoker)
public Invoker getInvoker()
public void setInvokerProxyBinding(String binding)
public String getInvokerProxyBinding()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |