ItemsBeanControl.jcx Sample

This topic inludes the source code for the ItemsBeanControl.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/finderMethods/

Sample Source Code


01 package finderMethods; 
02 
03 import com.bea.control.*; 
04 
05 /**
06  *   @jc:ejb home-jndi-name="ejb.ItemsBean_FHome"
07  */
08 public interface ItemsBeanControl 
09         extends finderMethods.Items_FHome,    // home interface
10                 finderMethods.Items_F,    // 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