1 package test; 2 3 4 /** 5 * This is the service endpoint interface for the TestWebService1web service. 6 * Created 25.2.2005 10:25:32 7 * @author lm97939 8 */ 9 10 public interface TestWebService1SEI extends java.rmi.Remote { 11 /** 12 * Web service operation 13 */ 14 public int sum(int a, int b) throws java.rmi.RemoteException; 15 16 } 17