public abstract class RemoteObject extends Object implements Remote, Serializable
Modifier | Constructor and Description |
---|---|
protected |
RemoteObject() |
protected |
RemoteObject(RemoteRef newref) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
Default object equality (is identity).
|
RemoteRef |
getRef() |
int |
hashCode()
The (default) object hashcode: for transient objects this is simply the
address of the instance in memory, for persistent objects it is the
address at which the instance was first created (maybe in a previous
activation of the VM).
|
String |
toString()
Default String representation: overriden by many classes.
|
static Remote |
toStub(Remote obj) |
protected transient RemoteRef ref
protected RemoteObject()
protected RemoteObject(RemoteRef newref)
public static Remote toStub(Remote obj) throws NoSuchObjectException
NoSuchObjectException
public boolean equals(Object obj)
Object
public RemoteRef getRef()
public int hashCode()
Object