Developing EJBs (continued)...Entity Beans
Implement the business logic methods
Implement the one or more ejbCreate() methods
Implement the EntityBean interface
- ejbActivate () - Called when the bean is activated
- ejbPassivate() - Called when the bean is passivated
- ejbLoad () - Forces the bean to load state from database
- ejbStore () - Forces the bean to store state from database
- ejbRemove () - Called when client calls remove()
- setEntityContext(EntityContext context) - Called by container on creation
- unsetEntityContext() - Called by container before being removed