When a wire representation if read from an object stream, it is
replaced by: (i) its concrete representation if it is found locally, or
(ii) a unique stub if it is remote reference.
class WireRep implements Serializable {
...
Object readResolve() {
return receiveNetObj(this); // the object manager
}
}