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/selectMethods/
Sample Source Code
01 package selectMethods;
02
03 import com.bea.control.*;
04
05 /**
06 * @jc:ejb home-jndi-name="ejb.ItemsBean_SHome"
07 */
08 public interface ItemsBeanControl
09 extends selectMethods.Items_SHome, // home interface
10 selectMethods.Items_S, // 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 }
|