KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > testSendMessage1InSB_TestingSessionRemoteBusiness


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

10 public interface TestingSessionRemoteBusiness {
11     String JavaDoc testBusinessMethod1() throws RemoteException JavaDoc;
12
13     String JavaDoc testBusinessMethod2(String JavaDoc a, int b) throws Exception JavaDoc, java.rmi.RemoteException JavaDoc;
14     
15 }
16
Popular Tags