public interface ResponseRef extends ResponseValues
ResponseValues.  It is used
 to marshal an object reference.| Modifier and Type | Method and Description | 
|---|---|
| int | getRefId()Returns an int id that identifies the object (so-called remote
 object id). | 
| java.lang.Object | getRefObject()Returns the actual object whose reference is being marshalled through
 this object. | 
| void | setRefId(int refId)Sets the remote object id. | 
| void | setRefObject(java.lang.Object obj)Sets the actual object whose reference is being marshalled through
 this object. | 
getBooleanValues, getIntValues, getLongValues, getObjectValues, setBooleanValues, setIntValues, setLongValues, setObjectValuesgetName, getOperationint getRefId()
void setRefId(int refId)
refId - the remote object id.java.lang.Object getRefObject()
transient so that the serialization process will not
 try to serialize the object itself.
 
 These getter and setter are used to hold
 reference to the object being marshalled.
void setRefObject(java.lang.Object obj)
transient so that the serialization process will not
 try to serialize the object itself.
 
 These getter and setter are used to hold
 reference to the object being marshalled.
obj - the object.