KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sample > testAddOperation2_SampleWebServiceSEI


1 package sample;
2
3 import java.rmi.Remote JavaDoc;
4 import java.rmi.RemoteException JavaDoc;
5
6
7 /**
8  * This is the service endpoint interface for the SampleWebServiceweb service.
9  * Created 2.6.2005 15:26:52
10  * @author lm97939
11  */

12
13 public interface SampleWebServiceSEI extends Remote JavaDoc {
14     /**
15      * Web service operation
16      */

17     public String JavaDoc operation1() throws RemoteException JavaDoc;
18
19     /**
20      * Web service operation
21      */

22     public String JavaDoc operation2(String JavaDoc a, int b) throws java.lang.Exception JavaDoc, java.rmi.RemoteException JavaDoc;
23     
24 }
25
Popular Tags