ejbActivate() A container invokes this method when the instance
is taken out of the pool of available instances to become associated
with a specific EJB object.
A container invokes this method when the instance
is taken out of the pool of available instances to become associated
with a specific EJB object. This method transitions the instance to
the ready state.
A container invokes this method on an instance before the instance
becomes disassociated with a specific EJB object. After this method
completes, the container will place the instance into the pool of
available instances.
ejbPostCreate
public void ejbPostCreate(String name) throws javax.ejb.CreateException(Code)
A container invokes this method before it removes the EJB object
that is currently associated with the instance. This method
is invoked when a client invokes a remove operation on the
enterprise Bean's home interface or the EJB object's remote interface.
This method transitions the instance from the ready state to the pool
of available instances.