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 Session Bean

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

Note:

Using EJB 2.1, you must implement all session bean callback methods. If you do not need to take any action, or if the callback method does not apply to your session bean, implement an empty method.

For more information, see the following:

Using Java

Example 12-1 shows how to implement an EBJ 2.1 session bean callback method.

Example 12-1 EJB 2.1 Session Bean Callback Method Implementation

public void ejbActivate() {
    // when bean is activated
}