1 package example;2 3 /**4 * The Greeting service returns a simple string.5 */6 public interface GreetingAPI {7 /**8 * Returns the greeting string.9 */10 public String greeting();11 }12