summaryrefslogtreecommitdiffstats
path: root/sandbox/sebastien/java/vhost/unreleased/samples/jsonp-webapp/src/main/java/sample/ShareService.java
blob: 3c79c6c2e94eb2f3f1ececa0157b2644afdfa938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package sample;

import org.oasisopen.sca.annotation.Remotable;

@Remotable
public interface ShareService {

	String shareName(String firstName, String lastName);
	
	int shareAge(int age);
	
	Location shareLocation(Location location);
	
}