clear |
public void clear(): Clears the parameters.
|
|
getParam |
public java.lang.Object getParam(int position): Gets
the value for a parameter associated with a specified position in the
parameters collection. Normally, this method is not used by the client.
|
VARIABLES |
TYPE |
VARIABLES DESCRIPTION |
position |
Input |
int position: parameter position the M RPC expects
this parameter.
|
return |
Output |
returns java.lang.Object: Object String or Map. A
return value of null indicates that there is no parameter for the position.
|
|
setParam |
public void setParam(int position, java.lang.String
type, java.lang.Object value): Sets a parameter needed by for a M RPC call.
|
VARIABLES |
TYPE |
VARIABLES DESCRIPTION |
position |
Input |
int position: parameter position the M RPC expects
this parameter.
|
type |
Input |
java.lang.String type: type of parameter
corresponding to valid M RPC types
|
value |
Input |
java.lang.Object value: value of the parameter.
Possible values are the following:
string (corresponds to 'Literal' in VA RPC Broker) array (corresponds to
'List' in VA RPC Broker) ref (corresponds to 'Reference' in VA RPC Broker)
|
|