KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > testAddCreateMethod1InEB_TestingEntityLocalHome


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

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

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

26     TestingEntityLocal create(String JavaDoc key) throws CreateException JavaDoc;
27
28     TestingEntityLocal createTest1() throws javax.ejb.CreateException JavaDoc;
29     
30     
31 }
32
Popular Tags