- java.lang.Object
-
- java.rmi.server.RemoteObject
-
- All Implemented Interfaces:
- Serializable, Remote
- Direct Known Subclasses:
- RemoteObjectInvocationHandler, RemoteServer, RemoteStub
public abstract class RemoteObject extends Object implements Remote, Serializable
TheRemoteObject
class implements thejava.lang.Object
behavior for remote objects.RemoteObject
provides the remote semantics of Object by implementing methods for hashCode, equals, and toString.- Since:
- JDK1.1
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description protected RemoteRef
ref
The object's remote reference.
-
Constructor Summary
Constructors Modifier Constructor and Description protected
RemoteObject()
Creates a remote object.protected
RemoteObject(RemoteRef newref)
Creates a remote object, initialized with the specified remote reference.
-
Method Summary
Methods Modifier and Type Method and Description boolean
equals(Object obj)
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(Remote obj)
Returns the stub for the remote objectobj
passed as a parameter.
-
-
-
Field Detail
-
ref
protected transient RemoteRef ref
The object's remote reference.
-
-
Constructor Detail
-
RemoteObject
protected RemoteObject()
Creates a remote object.
-
RemoteObject
protected RemoteObject(RemoteRef newref)
Creates a remote object, initialized with the specified remote reference.- Parameters:
newref
- remote reference
-
-
Method Detail
-
getRef
public RemoteRef getRef()
Returns the remote reference for the remote object.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 customwriteObject
andreadObject
methods. An instance ofRemoteRef
should not be serialized outside of itsRemoteObject
wrapper instance or the result may be unportable.- Returns:
- remote reference for the remote object
- Since:
- 1.2
-
toStub
public static Remote toStub(Remote obj) throws NoSuchObjectException
Returns the stub for the remote objectobj
passed as a parameter. This operation is only valid after the object has been exported.- Parameters:
obj
- the remote object whose stub is needed- Returns:
- the stub for the remote object,
obj
. - Throws:
NoSuchObjectException
- if the stub for the remote object could not be found.- Since:
- 1.2
-
hashCode
public int hashCode()
Returns a hashcode for a remote object. Two remote object stubs that refer to the same remote object will have the same hash code (in order to support remote objects as keys in hash tables).
-
equals
public boolean equals(Object obj)
Compares two remote objects for equality. Returns a boolean that indicates whether this remote object is equivalent to the specified Object. This method is used when a remote object is stored in a hashtable. If the specified Object is not itself an instance of RemoteObject, then this method delegates by returning the result of invoking theequals
method of its parameter with this remote object as the argument.
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/rmi/server/remoteobject.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.