edu.cmu.aura.service.rpc
Class CallEnvelope
java.lang.Object
|
+--edu.cmu.aura.service.rpc.CallEnvelope
- public class CallEnvelope
- extends java.lang.Object
CallEnvelope is used to carry method calls across the wire.
The method name is carried in the HTTP request URL, parameters
are carried within this class. A custom serializer is used
for this class since the ArrayList is not part of the wire
definition.
|
Method Summary |
java.util.ArrayList |
getParameters()
Get the parameters for this method call. |
void |
setParameters(java.util.ArrayList parameters)
Set the parameters for this method call. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CallEnvelope
public CallEnvelope()
- Create a CallEnvelope.
setParameters
public void setParameters(java.util.ArrayList parameters)
- Set the parameters for this method call.
getParameters
public java.util.ArrayList getParameters()
- Get the parameters for this method call.