TraderEJBControl.jcx Sample
This topic inludes the source code for the TraderEJBControl.jcx Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebServices/ejbControl/
Sample Source Code
01 package ejbControl;
02
03 /**
04 * @jc:ejb home-jndi-name="ejb20-statelessSession-TraderHome"
05 * @editor-info:ejb home="TraderEJB.jar" bean="TraderEJB.jar"
06 */
07 public interface TraderEJBControl
08 extends examples.ejb20.basic.statelessSession.TraderHome, // home interface
09 examples.ejb20.basic.statelessSession.Trader, // bean interface
10 com.bea.control.SessionEJBControl, // control interface
11 com.bea.control.ControlExtension // control extension marker
12 {
13 }
|