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