CustomerAccountEJB.jcx Sample
This topic inludes the source code for the CustomerAccountEJB.jcx Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/JavaControlProject/verifyFunds/
Sample Source Code
01 package verifyFunds;
02
03 import com.bea.control.*;
04
05 /**
06 * An EJB control to support the VerifyFunds sample control. Represents
07 * a customer account EJB in purchase order requests.
08 *
09 * @jc:ejb home-jndi-name="ejb20-containerManaged-AccountHome"
10 * @editor-info:ejb home="AccountEJB.jar" bean="AccountEJB.jar"
11 */
12 public interface CustomerAccountEJB
13 extends com.bea.control.ControlExtension,
14 com.bea.control.EntityEJBControl,
15 examples.ejb20.basic.containerManaged.Account,
16 examples.ejb20.basic.containerManaged.AccountHome
17 { }
|