- 
- All Superinterfaces:
- Remote
 
 public interface Registry extends Remote Registryis a remote interface to a simple remote object registry that provides methods for storing and retrieving remote object references bound with arbitrary string names. Thebind,unbind, andrebindmethods are used to alter the name bindings in the registry, and thelookupandlistmethods are used to query the current name bindings.In its typical usage, a Registryenables RMI client bootstrapping: it provides a simple means for a client to obtain an initial reference to a remote object. Therefore, a registry's remote object implementation is typically exported with a well-known address, such as with a well-knownObjIDand TCP port number (default is1099).The LocateRegistryclass provides a programmatic API for constructing a bootstrap reference to aRegistryat a remote address (see the staticgetRegistrymethods) and for creating and exporting aRegistryin the current VM on a particular local address (see the staticcreateRegistrymethods).A Registryimplementation may choose to restrict access to some or all of its methods (for example, methods that mutate the registry's bindings may be restricted to calls originating from the local host). If aRegistrymethod chooses to deny access for a given invocation, its implementation may throwAccessException, which (because it extendsRemoteException) will be wrapped in aServerExceptionwhen caught by a remote client.The names used for bindings in a Registryare pure strings, not parsed. A service which stores its remote reference in aRegistrymay wish to use a package name as a prefix in the name binding to reduce the likelihood of name collisions in the registry.- Since:
- 1.1
- See Also:
- LocateRegistry
 
- 
- 
Field SummaryFields Modifier and Type Field Description static intREGISTRY_PORTWell known port for registry.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbind(String name, Remote obj)Binds a remote reference to the specifiednamein this registry.String[]list()Returns an array of the names bound in this registry.Remotelookup(String name)Returns the remote reference bound to the specifiednamein this registry.voidrebind(String name, Remote obj)Replaces the binding for the specifiednamein this registry with the supplied remote reference.voidunbind(String name)Removes the binding for the specifiednamein this registry.
 
- 
- 
- 
Field Detail- 
REGISTRY_PORTstatic final int REGISTRY_PORT Well known port for registry.- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
lookupRemote lookup(String name) throws RemoteException, NotBoundException, AccessException Returns the remote reference bound to the specifiednamein this registry.- Parameters:
- name- the name for the remote reference to look up
- Returns:
- a reference to a remote object
- Throws:
- NotBoundException- if- nameis not currently bound
- RemoteException- if remote communication with the registry failed; if exception is a- ServerExceptioncontaining an- AccessException, then the registry denies the caller access to perform this operation
- AccessException- if this registry is local and it denies the caller access to perform this operation
- NullPointerException- if- nameis- null
 
 - 
bindvoid bind(String name, Remote obj) throws RemoteException, AlreadyBoundException, AccessException Binds a remote reference to the specifiednamein this registry.- Parameters:
- name- the name to associate with the remote reference
- obj- a reference to a remote object (usually a stub)
- Throws:
- AlreadyBoundException- if- nameis already bound
- RemoteException- if remote communication with the registry failed; if exception is a- ServerExceptioncontaining an- AccessException, then the registry denies the caller access to perform this operation (if originating from a non-local host, for example)
- AccessException- if this registry is local and it denies the caller access to perform this operation
- NullPointerException- if- nameis- null, or if- objis- null
 
 - 
unbindvoid unbind(String name) throws RemoteException, NotBoundException, AccessException Removes the binding for the specifiednamein this registry.- Parameters:
- name- the name of the binding to remove
- Throws:
- NotBoundException- if- nameis not currently bound
- RemoteException- if remote communication with the registry failed; if exception is a- ServerExceptioncontaining an- AccessException, then the registry denies the caller access to perform this operation (if originating from a non-local host, for example)
- AccessException- if this registry is local and it denies the caller access to perform this operation
- NullPointerException- if- nameis- null
 
 - 
rebindvoid rebind(String name, Remote obj) throws RemoteException, AccessException Replaces the binding for the specifiednamein this registry with the supplied remote reference. If there is an existing binding for the specifiedname, it is discarded.- Parameters:
- name- the name to associate with the remote reference
- obj- a reference to a remote object (usually a stub)
- Throws:
- RemoteException- if remote communication with the registry failed; if exception is a- ServerExceptioncontaining an- AccessException, then the registry denies the caller access to perform this operation (if originating from a non-local host, for example)
- AccessException- if this registry is local and it denies the caller access to perform this operation
- NullPointerException- if- nameis- null, or if- objis- null
 
 - 
listString[] list() throws RemoteException, AccessException Returns an array of the names bound in this registry. The array will contain a snapshot of the names bound in this registry at the time of the given invocation of this method.- Returns:
- an array of the names bound in this registry
- Throws:
- RemoteException- if remote communication with the registry failed; if exception is a- ServerExceptioncontaining an- AccessException, then the registry denies the caller access to perform this operation
- AccessException- if this registry is local and it denies the caller access to perform this operation
 
 
- 
 
-