home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / java / rmi / registry / Registry.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  654 b   |  22 lines

  1. package java.rmi.registry;
  2.  
  3. import java.rmi.AccessException;
  4. import java.rmi.AlreadyBoundException;
  5. import java.rmi.NotBoundException;
  6. import java.rmi.Remote;
  7. import java.rmi.RemoteException;
  8.  
  9. public interface Registry extends Remote {
  10.    int REGISTRY_PORT = 1099;
  11.  
  12.    Remote lookup(String var1) throws RemoteException, NotBoundException, AccessException;
  13.  
  14.    void bind(String var1, Remote var2) throws RemoteException, AlreadyBoundException, AccessException;
  15.  
  16.    void unbind(String var1) throws RemoteException, NotBoundException, AccessException;
  17.  
  18.    void rebind(String var1, Remote var2) throws RemoteException, AccessException;
  19.  
  20.    String[] list() throws RemoteException, AccessException;
  21. }
  22.