public interface ResponseValues extends Response
Response and adds ability
 to marshal various data values with it.| Modifier and Type | Method and Description | 
|---|---|
| boolean[] | getBooleanValues()Returns the boolean array data in this response. | 
| int[] | getIntValues()Returns the int array data in this response. | 
| long[] | getLongValues()Returns the long array data in this response. | 
| java.lang.Object[] | getObjectValues()Returns the object array data in this response. | 
| ResponseValues | setBooleanValues(boolean[] values)Sets the boolean array for this response. | 
| ResponseValues | setIntValues(int[] values)Sets the int array for this response. | 
| ResponseValues | setLongValues(long[] values)Sets the long array for this response. | 
| ResponseValues | setObjectValues(java.lang.Object[] values)Sets the object array for this response. | 
getName, getOperationint[] getIntValues()
null if this
         response has no int array.ResponseValues setIntValues(int[] values)
values - the int array.this object.long[] getLongValues()
null if this
         response has no long array.ResponseValues setLongValues(long[] values)
values - the long array.this object.boolean[] getBooleanValues()
null if this
         response has no boolean array.ResponseValues setBooleanValues(boolean[] values)
values - the boolean array.this object.java.lang.Object[] getObjectValues()
null if this
         response has no object array.ResponseValues setObjectValues(java.lang.Object[] values)
values - the object array.this object.