summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/helloworld-jsp/src/main/java/sample/HelloworldServiceImpl.java
blob: be83d3b407dc99c1165beddcc0fb06e1b2b9a55d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package sample;

import org.osoa.sca.annotations.Service;

@Service(HelloworldService.class)
public class HelloworldServiceImpl implements HelloworldService {

	public String sayHello(String name) {
		return "Hello " + name;
	}

}