All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
   |
   +----java.rmi.server.RemoteObject
           |
           +----java.rmi.server.RemoteServer
                   |
                   +----java.rmi.server.UnicastRemoteObject
Objects that require remote behavior should extend RemoteObject, typically via UnicastRemoteObject. If UnicastRemoteObject is not extended, the implementation class must then assume the responsibility for the correct semantics of the hashCode, equals, and toString methods inherited from the Object class, so that they behave appropriately for remote objects.
 
 UnicastRemoteObject()
	UnicastRemoteObject()
   
 clone()
	clone()
   exportObject(Remote)
	exportObject(Remote)
   
 UnicastRemoteObject
UnicastRemoteObject
protected UnicastRemoteObject() throws RemoteException
 
 clone
clone
public Object clone() throws CloneNotSupportedException
 exportObject
exportObject
public static RemoteStub exportObject(Remote obj) throws RemoteException
All Packages Class Hierarchy This Package Previous Next Index