uk.ltd.getahead.dwr
Class Call
java.lang.Object
uk.ltd.getahead.dwr.Call
- public class Call
- extends java.lang.Object
Call is a POJO to encapsulate the information required to make a single java
call, including the result of the call (either returned data or exception).
- Author:
- Joe Walker [joe at getahead dot ltd dot uk]
Constructor Summary |
Call()
|
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Call
public Call()
setId
public void setId(java.lang.String id)
- Parameters:
id
- The id to set.
getId
public java.lang.String getId()
- Returns:
- Returns the id.
setScriptName
public void setScriptName(java.lang.String scriptName)
- Parameters:
scriptName
- The scriptName to set.
getScriptName
public java.lang.String getScriptName()
- Returns:
- Returns the scriptName.
setMethodName
public void setMethodName(java.lang.String methodName)
- Parameters:
methodName
- The methodName to set.
getMethodName
public java.lang.String getMethodName()
- Returns:
- Returns the methodName.
setInboundContext
public void setInboundContext(InboundContext inctx)
- Parameters:
inctx
- The inctx to set.
getInboundContext
public InboundContext getInboundContext()
- Returns:
- Returns the inctx.
setReply
public void setReply(OutboundVariable reply)
- Parameters:
reply
- The reply to set.
getReply
public OutboundVariable getReply()
- Returns:
- Returns the reply.
setThrowable
public void setThrowable(OutboundVariable th)
- Parameters:
th
- The th to set.
getThrowable
public OutboundVariable getThrowable()
- Returns:
- Returns the th.