summaryrefslogtreecommitdiffstats
path: root/tags/java/sca/2.0-M4-RC1/samples/webapps/helloworld-rest/src/main/java/helloworldrest/HelloWorldService.java
blob: fb9d3e2f821b90a842bcf1d4f9a124dc47d21b42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package helloworldrest;

import org.oasisopen.sca.annotation.Remotable;

@Remotable
public interface HelloWorldService {

    public void setName(String name);

    public String getName();

    public void postOperationTest(String name);
}