1 package wstest;2 3 4 /**5 * This is the service endpoint interface for the TestWebServiceweb service.6 * Created 26.4.2005 17:06:247 * @author lm979398 */9 10 public interface TestWebServiceSEI extends java.rmi.Remote {11 /**12 * Web service operation13 */14 public String testOperation() throws java.rmi.RemoteException ;15 16 }17