Method Summary |
|
public void | ejbActivate() The activate method is called when the instance is activated from its
"passive" state. |
public String | ejbCreate(String key) Create an new instance. |
public String | ejbFindByPrimaryKey(String pk) Find an EJB. |
public void | ejbLoad() Called by the container to save persistent data. |
public void | ejbPassivate() The passivate method is called before the instance enters the
"passive" state. |
public void | ejbPostCreate(String key) Called after creating a new instance. |
public void | ejbRemove() A container invokes this method before it ends the life of the session
object. |
public void | ejbStore() Called by the container to load persistent data. |
public String | key() Just a dummy method that return the key. |
public void | setEntityContext(EntityContext context) Set the associated entity context. |
public void | unsetEntityContext() Unset the associated entity context. |