01: package example; 02: 03: /** 04: * The Greeting service returns a simple string. 05: */ 06: public interface GreetingAPI { 07: /** 08: * Returns the greeting string. 09: */ 10: public String greeting(); 11: }