KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > helloservice > HelloImpl


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

9 public class HelloImpl implements HelloSEI {
10     
11     public String JavaDoc message = "Hello ";
12     
13     // Enter web service operations here. (Popup menu: Web Service->Add Operation)
14
/**
15      * Web service operation
16      */

17     public String JavaDoc sayHello(java.lang.String JavaDoc s) {
18         // TODO implement operation
19
return message + s;
20     }
21     
22 }
23
Popular Tags