KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > testAddCMPField2InEB_TestingEntityRemoteBusiness


1
2 package test;
3
4 import java.rmi.RemoteException JavaDoc;
5
6
7 /**
8  * This is the business interface for TestingEntity enterprise bean.
9  */

10 public interface TestingEntityRemoteBusiness {
11     public abstract String JavaDoc getKey() throws RemoteException JavaDoc;
12
13     void setCmpTestField2x(int cmpTestField2x) throws java.rmi.RemoteException JavaDoc;
14
15     int getCmpTestField2x() throws java.rmi.RemoteException JavaDoc;
16
17     String JavaDoc testBusinessMethod1() throws RemoteException JavaDoc;
18     
19 }
20
Popular Tags