1 package sample;2 3 import java.rmi.Remote ;4 5 6 /**7 * This is the service endpoint interface for the SampleWebServiceweb service.8 * Created 2.6.2005 15:26:529 * @author lm9793910 */11 12 public interface SampleWebServiceSEI extends Remote {13 /**14 * Web service operation15 */16 public String operation1() throws java.rmi.RemoteException ;17 18 }19