public interface RequestParams extends Request
Request and adds ability
 to marshal various data values with it.| Modifier and Type | Method and Description | 
|---|---|
| boolean[] | getBooleanParams()Returns the boolean array data in this request. | 
| int[] | getIntParams()Returns the int array data in this request. | 
| long[] | getLongParams()Returns the long array data in this request. | 
| java.lang.Object[] | getObjectParams()Returns the object array data in this request. | 
| RequestParams | setBooleanParams(boolean[] params)Sets the boolean array for this request. | 
| RequestParams | setIntParams(int[] params)Sets the int array for this request. | 
| RequestParams | setLongParams(long[] params)Sets the long array for this request. | 
| RequestParams | setObjectParam(java.lang.Object param)Sets the object array for this request with one object. | 
| RequestParams | setObjectParams(java.lang.Object[] params)Sets the object array for this request. | 
getName, getOperation, getSourceIdint[] getIntParams()
null if this
         request has no int array.RequestParams setIntParams(int[] params)
params - the int array.this object.long[] getLongParams()
null if this
         request has no long array.RequestParams setLongParams(long[] params)
params - the long array.this object.boolean[] getBooleanParams()
null if this
         request has no boolean array.RequestParams setBooleanParams(boolean[] params)
params - the boolean array.this object.java.lang.Object[] getObjectParams()
null if this
         request has no object array.RequestParams setObjectParam(java.lang.Object param)
param - the object.this object.RequestParams setObjectParams(java.lang.Object[] params)
params - the object array.this object.