1 package sample; 2 3 4 /** 5 * This is the implementation bean class for the SampleWebService web service. 6 * Created 2.6.2005 15:26:52 7 * @author lm97939 8 */ 9 public class SampleWebServiceImpl implements SampleWebServiceSEI { 10 11 12 // Enter web service operations here. (Popup menu: Web Service->Add Operation) 13 /** 14 * Web service operation 15 */ 16 public String operation1() throws java.rmi.RemoteException { 17 // TODO implement operation 18 return null; 19 } 20 } 21