01: package example; 02: 03: public class HelloServiceImpl implements HelloService { 04: /** 05: * Returns "hello, world". 06: */ 07: public String hello() { 08: return "hello, world"; 09: } 10: }