KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > example > HelloServiceImpl


1 package example;
2
3 import javax.jws.WebMethod;
4 import javax.jws.WebService;
5
6 @WebService(endpointInterface="example.HelloService")
7 public class HelloServiceImpl implements HelloService {
8   /**
9    * Returns "hello, world".
10    */

11   @WebMethod
12   public HelloResult hello()
13   {
14     return new HelloResult();
15   }
16 }
17
Popular Tags