KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > helloservice > HelloSEI


1 package helloservice;
2
3
4 /**
5  * This is the service endpoint interface for the Helloweb service.
6  * Created Apr 26, 2005 11:36:43 AM
7  * @author Lukas Jungmann
8  */

9
10 public interface HelloSEI extends java.rmi.Remote JavaDoc {
11     /**
12      * Web service operation
13      */

14     public String JavaDoc sayHello(java.lang.String JavaDoc s) throws java.rmi.RemoteException JavaDoc;
15     
16 }
17
Popular Tags