com.ooit.jotunnel
Class JORequest
java.lang.Object
|
+--com.ooit.jotunnel.JORequest
- public class JORequest
- extends java.lang.Object
- implements java.io.Serializable
The JOTunnel request object.
This request class is build according to a method. It has
a name and it has a parameter list. In contrast to a regular
method, the parameter list sent to the JOServer by value not by reference.
- See Also:
- Serialized Form
|
Constructor Summary |
JORequest(java.lang.String requestName,
java.io.Serializable[] parameters)
Constructor with the request name (or function name) and the parameter list. |
|
Method Summary |
java.io.Serializable[] |
getParameters()
Getting the requests parameter list. |
java.lang.String |
getRequestName()
Getting the request name. |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
serialVersionID
public static final long serialVersionID
JORequest
public JORequest(java.lang.String requestName,
java.io.Serializable[] parameters)
- Constructor with the request name (or function name) and the parameter list.
- Parameters:
requestName - the request name.parameters - the requests parameter list.
getRequestName
public java.lang.String getRequestName()
- Getting the request name.
- Returns:
- the request name.
getParameters
public java.io.Serializable[] getParameters()
- Getting the requests parameter list.
- Returns:
- the requests parameter list.