/[classpath]/classpath/java/rmi/registry/Registry.java
ViewVC logotype

Diff of /classpath/java/rmi/registry/Registry.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by mkoch, Sun Mar 23 09:15:08 2003 UTC revision 1.4 by mkoch, Sun Oct 12 15:32:01 2003 UTC
# Line 45  import java.rmi.Remote; Line 45  import java.rmi.Remote;
45    
46  public interface Registry extends Remote  public interface Registry extends Remote
47  {  {
48    public static final int REGISTRY_PORT = 1099;    int REGISTRY_PORT = 1099;
49    
50    public Remote lookup(String name)    Remote lookup(String name)
51      throws RemoteException, NotBoundException, AccessException;      throws RemoteException, NotBoundException, AccessException;
52    
53    public void bind(String name, Remote obj)    void bind(String name, Remote obj)
54      throws RemoteException, AlreadyBoundException, AccessException;      throws RemoteException, AlreadyBoundException, AccessException;
55    
56    public void unbind(String name)    void unbind(String name)
57      throws RemoteException, NotBoundException, AccessException;      throws RemoteException, NotBoundException, AccessException;
58    
59    public void rebind(String name, Remote obj)    void rebind(String name, Remote obj)
60      throws RemoteException, AccessException;      throws RemoteException, AccessException;
61    
62    public String[] list()    String[] list()
63      throws RemoteException, AccessException;      throws RemoteException, AccessException;
64  }  }

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26