public class RemoteInvocationResult
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
protected java.lang.Object[] |
arguments
The updated parameters, after the remote call.
|
protected java.lang.Throwable |
error
The error thrown during the remote call or connection request.
|
protected java.lang.String |
modes
The resolved parameter modes for this call.
|
protected java.lang.Object |
result
The function/procedure call result.
|
| Constructor and Description |
|---|
RemoteInvocationResult() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object[] |
getArguments()
Getter for the
arguments field. |
java.lang.Throwable |
getError()
Get any error thrown by the last remote request.
|
java.lang.String |
getModes()
Get the resolved parameter modes for this call.
|
java.lang.Object |
getResult()
Get the returned result, after a function or procedure invocation.
|
void |
setArguments(java.lang.Object[] arguments)
Setter for the
arguments field. |
void |
setError(java.lang.Throwable error)
Set the error thrown by the current remote request.
|
void |
setModes(java.lang.String modes)
Set the resolved parameter modes for this call.
|
void |
setResult(java.lang.Object result)
Set the result of this remote call.
|
boolean |
setReturnValue()
Check if the RETURN-VALUE will be set.
|
protected java.lang.Object[] arguments
protected java.lang.Object result
protected java.lang.String modes
protected java.lang.Throwable error
public java.lang.Object getResult()
result field.public void setResult(java.lang.Object result)
result - The result of this remote invocation.public java.lang.Throwable getError()
error field.public void setError(java.lang.Throwable error)
error - The caught error.public java.lang.Object[] getArguments()
arguments field.public void setArguments(java.lang.Object[] arguments)
arguments field.arguments - The updated arguments, to sent back to the caller.public java.lang.String getModes()
public void setModes(java.lang.String modes)
modes - The resolved parameter modes.public boolean setReturnValue()
false.