Methods Summary |
---|
public javax.ejb.EJBHome | readEJBHome(java.io.ObjectInputStream istream)Deserialize the EJBHome reference corresponding to a HomeHandle.
readEJBHome is called from the readObject method of
portable HomeHandle implementation classes. The istream object is the
same object that was passed in to the HomeHandle class's readObject.
When readEJBHome is called, istream must point to the location
in the stream at which the EJBHome reference can be read.
The container must ensure that the EJBHome reference is
capable of performing invocations immediately after deserialization.
|
public javax.ejb.EJBObject | readEJBObject(java.io.ObjectInputStream istream)Deserialize the EJBObject reference corresponding to a Handle.
readEJBObject is called from the readObject method of
portable Handle implementation classes. The istream object is the
same object that was passed in to the Handle class's readObject.
When readEJBObject is called, istream must point to the location
in the stream at which the EJBObject reference can be read.
The container must ensure that the EJBObject reference is
capable of performing invocations immediately after deserialization.
|
public void | writeEJBHome(javax.ejb.EJBHome ejbHome, java.io.ObjectOutputStream ostream)Serialize the EJBHome reference corresponding to a HomeHandle.
This method is called from the writeObject method of
portable HomeHandle implementation classes. The ostream object is the
same object that was passed in to the Handle class's writeObject.
|
public void | writeEJBObject(javax.ejb.EJBObject ejbObject, java.io.ObjectOutputStream ostream)Serialize the EJBObject reference corresponding to a Handle.
This method is called from the writeObject method of
portable Handle implementation classes. The ostream object is the
same object that was passed in to the Handle class's writeObject.
|