API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.rmi.registry. Registry View Source
Author(s)
Ann Wollrath
Peter Jones
Since
JDK1.1
Version
1.19, 05/11/17
Serial
Hierarchy
 Remote
      Registry
Subinterfaces
Description
public interface Registry
  Registry is a remote interface to a simple remote object registry that provides methods for storing and retrieving remote object references bound with arbitrary string names.
See also:    LocateRegistry
Methods
Hide/Show inherited methods
public void bind (String name, Remote obj) throws RemoteException AlreadyBoundException AccessException
  Binds a remote reference to the specified name in this registry.
public String list () throws RemoteException AccessException
  Returns an array of the names bound in this registry.
public Remote lookup (String name) throws RemoteException NotBoundException AccessException
  Returns the remote reference bound to the specified name in this registry.
public void rebind (String name, Remote obj) throws RemoteException AccessException
  Replaces the binding for the specified name in this registry with the supplied remote reference.
public void unbind (String name) throws RemoteException NotBoundException AccessException
  Removes the binding for the specified name in this registry.
Fields
Hide/Show inherited fields
publicfinalstatic int REGISTRY_PORT = "1099"
Well known port for registry.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar