KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > example > HelloService


1 package example;
2
3 import javax.jws.WebMethod;
4 import javax.jws.WebService;
5
6 @WebService
7 public interface HelloService {
8   /**
9    * Returns "hello, world".
10    */

11   @WebMethod
12   public HelloResult hello();
13 }
14
Popular Tags