1 package sample; 2 3 import java.rmi.Remote; 4 import java.rmi.RemoteException; 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 { 14 /** 15 * Web service operation 16 */ 17 public String operation1() throws RemoteException; 18 19 /** 20 * Web service operation 21 */ 22 public String operation2(String a, int b) throws java.lang.Exception, java.rmi.RemoteException; 23 24 } 25