| |
|
| java.lang.Object org.apache.openejb.test.stateless.ContextLookupStatelessBean
ejbActivate | public void ejbActivate() throws EJBException, RemoteException(Code) | | The activate method is called when the instance is activated
from its "passive" state. The instance should acquire any resource
that it has released earlier in the ejbPassivate() method.
|
ejbCreate | public void ejbCreate() throws javax.ejb.CreateException(Code) | | throws: javax.ejb.CreateException - |
ejbPassivate | public void ejbPassivate() throws EJBException, RemoteException(Code) | | The passivate method is called before the instance enters
the "passive" state. The instance should release any resources that
it can re-acquire later in the ejbActivate() method.
|
ejbRemove | public void ejbRemove() throws EJBException, RemoteException(Code) | | A container invokes this method before it ends the life of the session
object. This happens as a result of a client's invoking a remove
operation, or when a container decides to terminate the session object
after a timeout.
|
setSessionContext | public void setSessionContext(SessionContext ctx) throws EJBException, RemoteException(Code) | | Set the associated session context. The container calls this method
after the instance creation.
|
|
|
|