summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/sca/branches/tb3/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/IMyService.java
blob: 4b49225748a4e2c885ef69e27cfe6e1197485b15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package sample.wicket;


/**
 * Service interface for a simple "Hello World" app.
 * 
 * @author Alastair Maw
 */
public interface IMyService
{
    /**
     * Retrieves the text to say "Hello World".
     * 
     * @return "Hello World"
     */
    public String getHelloWorldText();
}