1 7 15 16 package javax.rmi.CORBA; 17 18 import java.rmi.RemoteException ; 19 import java.rmi.NoSuchObjectException ; 20 import java.rmi.Remote ; 21 22 35 public interface PortableRemoteObjectDelegate { 36 37 40 void exportObject(Remote obj) 41 throws RemoteException ; 42 43 46 Remote toStub (Remote obj) 47 throws NoSuchObjectException ; 48 49 52 void unexportObject(Remote obj) 53 throws NoSuchObjectException ; 54 55 58 java.lang.Object narrow (java.lang.Object narrowFrom, 59 java.lang.Class narrowTo) 60 throws ClassCastException ; 61 62 65 void connect (Remote target, Remote source) 66 throws RemoteException ; 67 68 } 69 | Popular Tags |