1 package test.interfaces; 2 3 import java.rmi.RemoteException; 4 import javax.ejb.CreateException; 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 SecurityOfficerHome 11 extends javax.ejb.EJBHome 12 { 13 14 /** 15 */ 16 public SecurityOfficer create() 17 throws CreateException, RemoteException; 18 } 19