org.springframework.ejb.support
Class AbstractSessionBean
java.lang.Object
   org.springframework.ejb.support.AbstractEnterpriseBean
org.springframework.ejb.support.AbstractEnterpriseBean
       org.springframework.ejb.support.AbstractSessionBean
org.springframework.ejb.support.AbstractSessionBean
- All Implemented Interfaces: 
- Serializable, EnterpriseBean, SessionBean, SmartSessionBean
- Direct Known Subclasses: 
- AbstractStatefulSessionBean, AbstractStatelessSessionBean
- public abstract class AbstractSessionBean 
- extends AbstractEnterpriseBean- implements SmartSessionBean
Base class for Spring-based EJB 2.x session beans. Not intended for direct
 subclassing: Extend AbstractStatelessSessionBean or
 AbstractStatefulSessionBean instead.
 
This class saves the session context provided by the EJB container in an
 instance variable and exposes it through the SmartSessionBean interface.
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
- Serialized Form
 
 
 
 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
 
AbstractSessionBean
public AbstractSessionBean()
setSessionContext
public void setSessionContext(SessionContext sessionContext)
- Set the session context for this EJB.
 When overriding this method, be sure to invoke this form of it first.
 
 
- 
- Specified by:
- setSessionContextin interface- SessionBean
 
- 
 
getSessionContext
public final SessionContext getSessionContext()
- Convenience method for subclasses, returning the EJB session context
 saved on initialization (setSessionContext(javax.ejb.SessionContext)).
 
- 
- Specified by:
- getSessionContextin interface- SmartSessionBean
 
- 
 
Copyright © 2002-2008 The Spring Framework.