View Javadoc

1   /*
2    * Created on 29.04.2005 from Linke
3    *
4    */
5   package test.crispy.example.ejb;
6   
7   import java.rmi.RemoteException;
8   
9   import javax.ejb.CreateException;
10  import javax.ejb.EJBHome;
11  
12  /**
13   * @author Linke
14   *
15   */
16  public interface EjbServiceHome extends EJBHome {
17  	
18      /**
19       * Creates a default instance of Session Bean: DefaultSession
20       */
21      public EjbService create() throws CreateException, RemoteException;
22  
23  
24  }