Java in a Nutshell Online Quick Reference for Java 1.1

INTERFACE java.rmi.registry.Registry

Availability: JDK 1.1

public abstract interface Registry extends Remote {
   // Constants
      public static final int REGISTRY_PORT;
   // Public Instance Methods
      public abstract void bind(String name, Remote obj) throws RemoteException, AlreadyBoundException, AccessException;
      public abstract String[] list() throws RemoteException, AccessException;
      public abstract Remote lookup(String name) throws RemoteException, NotBoundException, AccessException;
      public abstract void rebind(String name, Remote obj) throws RemoteException, AccessException;
      public abstract void unbind(String name) throws RemoteException, NotBoundException, AccessException;
}
Returned By:
LocateRegistry.createRegistry(), LocateRegistry.getRegistry(), RegistryHandler.registryImpl(), RegistryHandler.registryStub().

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.