01: package example; 02: 03: /** 04: * Interface for the Hello session. 05: */ 06: public interface Hello { 07: /** 08: * Returns a hello, world string. 09: */ 10: public String hello(); 11: }