KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > testAddHomeMethod1InEB_TestingEntityLocalHome


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

13 public interface TestingEntityLocalHome extends EJBLocalHome JavaDoc {
14     
15     
16     
17     /**
18      *
19      */

20     TestingEntityLocal findByPrimaryKey(String JavaDoc key) throws FinderException JavaDoc;
21     
22     
23     
24     /**
25      *
26      */

27     TestingEntityLocal create(String JavaDoc key) throws CreateException JavaDoc;
28
29     TestingEntityLocal createTest1() throws CreateException JavaDoc;
30
31     TestingEntityLocal createTest2(String JavaDoc a, int b) throws CreateException JavaDoc, IOException JavaDoc;
32
33     String JavaDoc homeTestMethod1();
34     
35     
36 }
37
Popular Tags