KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > testAddCMPField2InEB_TestingEntityLocalHome


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

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

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

28     TestingEntityLocal create(String JavaDoc key) throws CreateException JavaDoc;
29
30     TestingEntityLocal createTest1() throws CreateException JavaDoc;
31
32     TestingEntityLocal createTest2(String JavaDoc a, int b) throws CreateException JavaDoc, IOException JavaDoc;
33
34     String JavaDoc homeTestMethod1();
35
36     String JavaDoc homeTestMethod2(String JavaDoc a, int b) throws Exception JavaDoc;
37
38     Collection JavaDoc findByTest1() throws FinderException JavaDoc;
39
40     TestingEntityLocal findByTest3(String JavaDoc a) throws javax.ejb.FinderException JavaDoc;
41     
42     
43 }
44
Popular Tags