1 package test.interfaces; 2 3 import java.rmi.RemoteException; 4 import javax.ejb.EJBObject; 5 6 /** 7 * This Bean serves as an example of a session bean that does not require a subclass to be generated, but is included in the deployment descriptor generation. It is a _very_ simple stupid example. 8 * 9 */ 10 public interface SecurityOfficer 11 extends EJBObject 12 { 13 14 /** 15 */ 16 public void patrolBank() 17 throws RemoteException; 18 } 19