Skip Headers
Oracle® Containers for J2EE Enterprise JavaBeans Developer's Guide
10g (10.1.3.5.0)

Part Number E13981-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

Configuring a Life Cycle Callback Method for an EJB 2.1 MDB

The following are the EJB 2.1 life cycle methods, as specified in the javax.ejb.MessageDrivenBean interface, that a message-driven bean must implement (see "Using Java"):

Note:

Using EJB 2.1, you must implement all message-driven bean callback methods. If you do not need to take any action, implement an empty method.

For more information, see "What is the Life Cycle of a Message-Driven Bean?".

Using Java

Example 18-7 shows how to implement an EBJ 2.1 message-driven bean life cycle callback method.

Example 18-7 EJB 2.1 MDB Life Cycle Callback Method Implementation

public void ejbRemove() {
    // when bean is removed
}