KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > testCallEJB2InSB_TestingSessionLocalHome


1
2 package test;
3
4 import javax.ejb.CreateException JavaDoc;
5 import javax.ejb.EJBLocalHome JavaDoc;
6
7
8 /**
9  * This is the local-home interface for TestingSession enterprise bean.
10  */

11 public interface TestingSessionLocalHome extends EJBLocalHome JavaDoc {
12     
13     
14     
15     /**
16      *
17      */

18     TestingSessionLocal create() throws CreateException JavaDoc;
19     
20     
21 }
22
Popular Tags