Package javax.rmi.CORBA
Interface StubDelegate
- All Known Implementing Classes:
StubDelegateImpl
public interface StubDelegate
Supports delegation for method implementations in
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.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidDelegation call forStub.connect(org.omg.CORBA.ORB).booleanDelegation call forStub.equals(java.lang.Object).intDelegation call forStub.hashCode().voidreadObject(Stub self, ObjectInputStream s) Delegation call forStub.readObject(java.io.ObjectInputStream).Delegation call forStub.toString().voidwriteObject(Stub self, ObjectOutputStream s) Delegation call forStub.writeObject(java.io.ObjectOutputStream).
-
Method Details
-
hashCode
Delegation call forStub.hashCode(). -
equals
Delegation call forStub.equals(java.lang.Object). -
toString
Delegation call forStub.toString(). -
connect
Delegation call forStub.connect(org.omg.CORBA.ORB).- Throws:
RemoteException
-
readObject
Delegation call forStub.readObject(java.io.ObjectInputStream).- Throws:
IOExceptionClassNotFoundException
-
writeObject
Delegation call forStub.writeObject(java.io.ObjectOutputStream).- Throws:
IOException
-