public interface StubDelegate
Stub. A delegate is an instance of a class that implements this interface and provides a replacement implementation for all the methods of
javax.rmi.CORBA.Stub. If delegation is enabled, each stub has an associated delegate. Delegates are enabled by providing the delegate's class name as the value of the
javax.rmi.CORBA.StubClass system property.
Stub
| Modifier and Type | Method and Description |
|---|---|
void |
connect(Stub
Delegation call for
Stub.
|
boolean |
equals(Stub
Delegation call for
Stub.
|
int |
hashCode(Stub
Delegation call for
Stub.
|
void |
readObject(Stub
Delegation call for
Stub.readObject(java.io.ObjectInputStream).
|
String |
toString(Stub
Delegation call for
Stub.
|
void |
writeObject(Stub
Delegation call for
Stub.writeObject(java.io.ObjectOutputStream).
|
int hashCode(Stubself)
Stub.hashCode() .
boolean equals(Stubself, Object obj)
Stub.equals(java.lang.Object) .
StringtoString(Stub self)
Stub.toString() .
void connect(Stubself, ORB orb) throws RemoteException
Stub.connect(org.omg.CORBA.ORB) .
RemoteException
void readObject(Stubself, ObjectInputStream s) throws IOException , ClassNotFoundException
Stub.readObject(java.io.ObjectInputStream).
IOException
ClassNotFoundException
void writeObject(Stubself, ObjectOutputStream s) throws IOException
Stub.writeObject(java.io.ObjectOutputStream).
IOException