1 7 8 package java.rmi.registry; 9 10 import java.rmi.RemoteException ; 11 import java.rmi.UnknownHostException ; 12 13 23 @Deprecated  24 public interface RegistryHandler { 25 26 39 @Deprecated  40 Registry registryStub(String host, int port) 41 throws RemoteException , UnknownHostException ; 42 43 54 @Deprecated  55 Registry registryImpl(int port) throws RemoteException ; 56 } 57 | Popular Tags |