RoleCheckerControl.jcx Sample
This topic inludes the source code for the RoleCheckerControl.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/security/
Sample Source Code
01 package security;
02
03 import com.bea.control.*;
04
05 /**
06 * @jc:ejb home-jndi-name="ejb.RoleCheckerLocalHome"
07 */
08 public interface RoleCheckerControl
09 extends security.RoleCheckerLocalHome, // home interface
10 security.RoleCheckerLocal, // bean interface
11 com.bea.control.SessionEJBControl, // control interface
12 com.bea.control.ControlExtension // control extension marker
13 {
14 static final long serialVersionUID = 1L;
15 }
|