Methods Summary |
---|
public T | getBusinessObject(java.lang.Class businessInterface)Obtain an object that can be used to invoke the current bean through
the given business interface.
|
public EJBLocalObject | getEJBLocalObject()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()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 java.lang.Class | getInvokedBusinessInterface()Obtain the business interface through which the current business
method invocation was made.
|
public javax.xml.rpc.handler.MessageContext | getMessageContext()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.
|