Serializable, Remote
RemoteObjectInvocationHandler, RemoteServer, RemoteStub
public abstract class RemoteObject extends Object implements Remote, Serializable
RemoteObject class implements the java.lang.Object behavior for remote objects. RemoteObject provides the remote semantics of Object by implementing methods for hashCode, equals, and toString.| Modifier and Type | Field | Description | 
|---|---|---|
| protected RemoteRef | ref | The object's remote reference. | 
| Modifier | Constructor | Description | 
|---|---|---|
| protected  | Creates a remote object. | |
| protected  | Creates a remote object, initialized with the specified remote reference. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| boolean | equals | Compares two remote objects for equality. | 
| RemoteRef | getRef() | Returns the remote reference for the remote object. | 
| int | hashCode() | Returns a hashcode for a remote object. | 
| String | toString() | Returns a String that represents the value of this remote object. | 
| static Remote | toStub | Returns the stub for the remote object  objpassed as a parameter. | 
protected transient RemoteRef ref
protected RemoteObject()
protected RemoteObject(RemoteRef newref)
newref - remote referencepublic RemoteRef getRef()
Note: The object returned from this method may be an instance of an implementation-specific class. The RemoteObject class ensures serialization portability of its instances' remote references through the behavior of its custom writeObject and readObject methods. An instance of RemoteRef should not be serialized outside of its RemoteObject wrapper instance or the result may be unportable.
public static Remote toStub(Remote obj) throws NoSuchObjectException
obj passed as a parameter. This operation is only valid after the object has been exported.obj - the remote object whose stub is neededobj.NoSuchObjectException - if the stub for the remote object could not be found.public int hashCode()
public boolean equals(Object obj)
equals method of its parameter with this remote object as the argument.public String toString()
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.rmi/java/rmi/server/RemoteObject.html