summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/sca/trunk/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/MyService.java
blob: 05998ff74f4ae0d1078f2a105c0b6e969b309512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package sample.wicket;


/**
 * Implementation of IService.
 * 
 * @author Alastair Maw
 */
public class MyService implements IMyService
{

    /**
     * @see org.apache.wicket.examples.guice.service.IMyService#getHelloWorldText()
     */
    public String getHelloWorldText()
    {
        return "Hello World";
    }

}