KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sample > testAddOperation2_SampleWebServiceImpl


1 package sample;
2
3 import java.rmi.RemoteException JavaDoc;
4
5
6 /**
7  * This is the implementation bean class for the SampleWebService web service.
8  * Created 2.6.2005 15:26:52
9  * @author lm97939
10  */

11 public class SampleWebServiceImpl implements SampleWebServiceSEI {
12     
13     
14     // Enter web service operations here. (Popup menu: Web Service->Add Operation)
15
/**
16      * Web service operation
17      */

18     public String JavaDoc operation1() throws RemoteException JavaDoc {
19         // TODO implement operation
20
return null;
21     }
22
23     /**
24      * Web service operation
25      */

26     public String JavaDoc operation2(String JavaDoc a, int b) throws java.lang.Exception JavaDoc, java.rmi.RemoteException JavaDoc {
27         // TODO implement operation
28
return null;
29     }
30 }
31
Popular Tags