Answered Questions

  • What are the call back methods in Session bean

    Answered by Jey on 2005-05-08 19:41:22: Session bean callback methods differ whether it is Stateless or stateful Session bean. Here they are.  Stateless Session Bean 1. setSessionContext() 2. ejbCreate() 3. ejbRemove()  Stateful Session Bean   1. setSessionContext() 2.ejbCreate() 3.ejbPassivate() 4.ejbActivate() 5.ejbRemove() 

    Satish

    • May 30th, 2007

    Session callback methods setSessionContext();unsetSessionContext();ejbLoad();ejbActivate();ejbPassivate();ejbRemove();Entity bean call back methodspublic void setEntityContext(javax.ejb.EntityContext ...