java.rmi.Naming Class
void bind(String name, Remote obj) throws RemoteException,
AlreadyBoundException, AccessException;
Binds the specified name to a remote object.
String[] list() throws RemoteException, AccessException;
Returns an array of the names bound in the registry.
Remote lookup(String name) throws RemoteException, NotBoundException, AccessException;
Returns a reference, a stub, for the remote object associated with the specified name.
void rebind(String name, Remote obj) throws RemoteException, AccessException;
Rebinds the specified name to a new remote object.
void unbind(String name) throws RemoteException, NotBoundException, AccessException;
Destroys the binding for the specified name that is associated with a remote object.