summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/getting-started/sca-scopes/src/main/java/sample/CompositeService.java
blob: 935c1ec4c5b8e912afb462739e70ac1d000fea42 (plain)
1
2
3
4
5
6
7
8
9
10
package sample;

import org.oasisopen.sca.annotation.Remotable;

@Remotable
public interface CompositeService {

	void hello();
	
}