KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > interfaces > SecurityOfficerHome


1 package test.interfaces;
2
3 import java.rmi.RemoteException JavaDoc;
4 import javax.ejb.CreateException JavaDoc;
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 JavaDoc
12 {
13
14 /**
15     */

16 public SecurityOfficer create()
17       throws CreateException JavaDoc, RemoteException JavaDoc;
18 }
19
Popular Tags