| CONTENTS | PREV | NEXT | Java Remote Method Invocation |
The java.rmi.server.RemoteObject class implements the java.lang.Object behavior for remote objects. ThehashCodeandequalsmethods are implemented to allow remote object references to be stored in hashtables and compared. Theequalsmethod returns true if two Remote objects refer to the same remote object. It compares the remote object references of the remote objects.The
toStringmethod returns a string describing the remote object. The contents and syntax of this string is implementation-specific and can vary.All of the other methods of java.lang.Object retain their original implementations.
package java.rmi.server;
public abstract class RemoteObject
implements java.rmi.Remote, java.io.Serializable
{
protected transient RemoteRef ref;
protected RemoteObject();
protected RemoteObject(RemoteRef ref);
public RemoteRef getRef();
public static Remote toStub(java.rmi.Remote obj)
throws java.rmi.NoSuchObjectException;
public int hashCode();
public boolean equals(Object obj);
public String toString();
}
Since the RemoteObject class is abstract, it cannot be instantiated. Therefore, one of RemoteObject's constructors must be called from a subclass implementation. The first RemoteObject constructor creates a RemoteObject with a null remote reference. The second RemoteObject constructor creates a RemoteObject with the given remote reference, ref.The
getRefmethod returns the remote reference for the remote object.The
toStubmethod returns a stub for the remote object, obj, passes as a parameter. This operation is only valid after the remote object implementation has been exported. If the stub for the remote object could not be found, then the method throws NoSuchObjectException.
The default implementations in the java.lang.Object class for theequals,hashCode, andtoStringmethods are not appropriate for remote objects. Therefore, the RemoteObject class provides implementations for these methods that have semantics more appropriate for remote objects.
In order for a remote object to be used as a key in a hash table, the methodsequalsandhashCodeneed to be overridden in the remote object implementation. These methods are overridden by the class java.rmi.server.RemoteObject:
- The java.rmi.server.RemoteObject class's implementation of the
equalsmethod determines whether two object references are equal, not whether the contents of the two objects are equal. This is because determining equality based on content requires a remote method invocation, and the signature ofequalsdoes not allow a remote exception to be thrown.- The java.rmi.server.RemoteObject class's implementation of the
hashCodemethod returns the same value for all remote references that refer to the same underlying remote object (because references to the same object are considered equal).
ThetoStringmethod is defined to return a string which represents the remote reference of the object. The contents of the string is specific to the remote reference type. The current implementation for singleton (unicast) objects includes an object identifier and other information about the object that is specific to the transport layer (such as host name and port number).
Objects are only clonable using the Java language's default mechanism if they support the java.lang.Cloneable interface. Stubs for remote objects generated by the rmic compiler are declared final and do not implement theCloneableinterface. Therefore, cloning a stub is not possible.
The RemoteObject class implements the special (private)writeObjectandreadObjectmethods called by the object serialization mechanism to handle serializing data to a java.io.ObjectOutputStream. RemoteObject's serialized form is written using the method:
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException, java.lang.ClassNotFoundException;
| - | ref's class is obtained via a call to its getRefClass method, which typically returns the unpackage qualified name of the remote reference's class. If the class name returned is non-null: |
| - | ref's class name is written to the stream, out, in UTF. |
| - | ref's writeExternal method is called passing it the stream, out, so that ref can write its external representation to the stream. |
| - | If the class name returned by ref.getRefClass is null: |
| - | the exception java.rmi.MarshalException is thrown. |
A RemoteObject's state is reconstructed from its serialized form using this method called by the ObjectInputStream during deserialization:
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException;
| - | The ref's full class name is constructed by conatenating the value of the string java.rmi.server.RemoteRef.packagePrefix and "." with the class name read from the stream. |
| - | An instance of the ref's class is created (from the full class name); if an instance cannot be created because of an InstantiationException or an IllegalAccessException, a java.rmi.UnmarshalException will be thrown. |
| - | The new instance (which becomes the ref field) reads its external form from the stream, in. |