Save This Page
Home » glassfish-v2ur2-b04-src » javax » ejb » [javadoc | source]
javax.ejb
public interface: SessionContext [javadoc | source]

All Implemented Interfaces:
    EJBContext

The SessionContext interface provides access to the runtime session context that the container provides for a session enterprise Bean instance. The container passes the SessionContext interface to an instance after the instance has been created. The session context remains associated with the instance for the lifetime of the instance.
Method from javax.ejb.SessionContext Summary:
getBusinessObject,   getEJBLocalObject,   getEJBObject,   getInvokedBusinessInterface,   getMessageContext
Method from javax.ejb.SessionContext Detail:
 public T getBusinessObject(Class businessInterface) throws IllegalStateException
    Obtain an object that can be used to invoke the current bean through the given business interface.
 public EJBLocalObject getEJBLocalObject() throws IllegalStateException
    Obtain a reference to the EJB local object that is associated with the instance.

    An instance of a session enterprise Bean can call this method at anytime between the ejbCreate() and ejbRemove() methods, including from within the ejbCreate() and ejbRemove() methods.

    An instance can use this method, for example, when it wants to pass a reference to itself in a method argument or result.

 public EJBObject getEJBObject() throws IllegalStateException
    Obtain a reference to the EJB object that is currently associated with the instance.

    An instance of a session enterprise Bean can call this method at anytime between the ejbCreate() and ejbRemove() methods, including from within the ejbCreate() and ejbRemove() methods.

    An instance can use this method, for example, when it wants to pass a reference to itself in a method argument or result.

 public Class getInvokedBusinessInterface() throws IllegalStateException
    Obtain the business interface through which the current business method invocation was made.
 public MessageContext getMessageContext() throws IllegalStateException
    Obtain a reference to the JAX-RPC MessageContext.

    An instance of a stateless session bean can call this method from any business method invoked through its web service endpoint interface.