KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > testAddCMPField1InEB_TestingEntityRemoteHome


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

14 public interface TestingEntityRemoteHome extends EJBHome JavaDoc {
15     
16     
17     
18     /**
19      *
20      */

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

28     TestingEntityRemote create(String JavaDoc key) throws CreateException JavaDoc, RemoteException JavaDoc;
29
30     TestingEntityRemote createTest2(String JavaDoc a, int b) throws CreateException JavaDoc, IOException JavaDoc, RemoteException JavaDoc;
31
32     String JavaDoc homeTestMethod1() throws RemoteException JavaDoc;
33
34     TestingEntityRemote findByTest3(String JavaDoc a) throws javax.ejb.FinderException JavaDoc, java.rmi.RemoteException JavaDoc;
35     
36     
37 }
38
Popular Tags