| |
|
| java.lang.Object newsamplemdb.MdbBean_a
All known Subclasses: newsamplemdb.MdbBean_b,
MdbBean_a | class MdbBean_a implements MessageDrivenBean(Code) | | Superclass of the MessageDrivenBean class MdbBean
Note that this class is not public but ejbCreate is public
(it's only for reproducing the 300387 bug!)
|
Method Summary | |
public void | ejbCreate() The Message driven bean must define an ejbCreate methods with no args. | public void | ejbRemove() A container invokes this method before it ends the life of the message-driven object. | public void | setMessageDrivenContext(MessageDrivenContext ctx) Set the associated context. |
MdbBean_a | public MdbBean_a()(Code) | | Default constructor
|
ejbCreate | public void ejbCreate()(Code) | | The Message driven bean must define an ejbCreate methods with no args.
|
ejbRemove | public void ejbRemove()(Code) | | A container invokes this method before it ends the life of the message-driven object.
This happens when a container decides to terminate the message-driven object.
This method is called with no transaction context.
|
setMessageDrivenContext | public void setMessageDrivenContext(MessageDrivenContext ctx)(Code) | | Set the associated context. The container call this method
after the instance creation.
The enterprise Bean instance should store the reference to the context
object in an instance variable.
This method is called with no transaction context.
Parameters: ctx - A MessageDrivenContext interface for the instance. |
|
|
|