The HandleDelegate object is obtained by JNDI lookup at the reserved name "java:comp/HandleDelegate".
| Method from javax.ejb.spi.HandleDelegate Summary: |
|---|
| readEJBHome, readEJBObject, writeEJBHome, writeEJBObject |
| Method from javax.ejb.spi.HandleDelegate Detail: |
|---|
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. |
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. |
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. |
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. |