KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sellwin > server > SellwinSessionHome


1 package sellwin.server;
2
3 import java.rmi.RemoteException JavaDoc;
4 import javax.ejb.CreateException JavaDoc;
5 import javax.ejb.EJBHome JavaDoc;
6
7 // SellWin http://sourceforge.net/projects/sellwincrm
8
//Contact support@open-app.com for commercial help with SellWin
9
//This software is provided "AS IS", without a warranty of any kind.
10

11 /**
12  * this interface is the home interface for the SellwinSession
13  * stateful session bean (EJB). This interface is implemented
14  * by the EJB container (e.g. Weblogic) which will generate a
15  * Java class that handles the 'home' lookup for clients of
16  * the SellwinSession session bean.
17  */

18 public interface SellwinSessionHome extends EJBHome JavaDoc {
19
20     /**
21      * this method corresponds to the ejbCreate() method in the
22      * bean "SellwinSession.java".
23      *
24      * @return SellwinSession
25      * @exception RemoteException if there is a communications failure
26      * @exception CreateException if there is an error creating the bean
27      */

28     public SellwinSession create() throws CreateException JavaDoc, RemoteException JavaDoc;
29 }
30
Popular Tags