01: package helloservice;
02:
03: /**
04: * This is the implementation bean class for the Hello web service.
05: * Created Apr 26, 2005 11:36:43 AM
06: * @author Lukas Jungmann
07: */
08: public class HelloImpl implements HelloSEI {
09:
10: public String message = "Hello ";
11:
12: // Enter web service operations here. (Popup menu: Web Service->Add Operation)
13: /**
14: * Web service operation
15: */
16: public String sayHello(java.lang.String s) {
17: // TODO implement operation
18: return message + s;
19: }
20:
21: }
|