01: package helloservice;
02:
03: /**
04: * This is the service endpoint interface for the Helloweb service.
05: * Created Apr 26, 2005 11:36:43 AM
06: * @author Lukas Jungmann
07: */
08:
09: public interface HelloSEI extends java.rmi.Remote {
10: /**
11: * Web service operation
12: */
13: public String sayHello(java.lang.String s)
14: throws java.rmi.RemoteException;
15:
16: }
|