BMPItemBeanCtrl.jcx Sample

This topic inludes the source code for the BMPItemBeanCtrl.jcx Sample.

Sample Location

This sample is located in the following directory in your WebLogic Workshop installation:

BEA_HOME/weblogic81/samples/workshop/SamplesApp/EJBs_ClientApps/beanManagedPersistence/

Sample Source Code


01 package beanManagedPersistence; 
02 
03 import com.bea.control.*; 
04 
05 /**
06  *   @jc:ejb home-jndi-name="ejb.BMPItemLocalHome"
07  */
08 public interface BMPItemBeanCtrl 
09         extends beanManagedPersistence.BMPItemHome,    // home interface
10                 beanManagedPersistence.BMPItem,    // bean interface
11                 com.bea.control.EntityEJBControl,     // control interface
12                 com.bea.control.ControlExtension     // control extension marker
13 
14     static final long serialVersionUID = 1L;
15