1 package sample; 2 3 import java.rmi.RemoteException; 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 operation1() throws RemoteException { 19 // TODO implement operation 20 return null; 21 } 22 23 /** 24 * Web service operation 25 */ 26 public String operation2(String a, int b) throws java.lang.Exception, java.rmi.RemoteException { 27 // TODO implement operation 28 return null; 29 } 30 } 31