1 7 8 package com.sun.corba.se.spi.presentation.rmi ; 9 10 import java.rmi.RemoteException ; 11 12 import org.omg.CORBA.portable.Delegate ; 13 import org.omg.CORBA.portable.OutputStream ; 14 15 import org.omg.CORBA.ORB ; 16 17 22 public interface DynamicStub extends org.omg.CORBA.Object  23 { 24 26 void setDelegate( Delegate delegate ) ; 27 28 30 Delegate getDelegate() ; 31 32 34 ORB getORB() ; 35 36 38 String [] getTypeIds() ; 39 40 46 void connect( ORB orb ) throws RemoteException ; 47 48 boolean isLocal() ; 49 50 OutputStream request( String operation, boolean responseExpected ) ; 51 } 52 53 | Popular Tags |