summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/CallbackServlet.java
blob: 9a17a411729d9acfca0d853867af41ae26e5f3dd (plain)
1
2
3
4
5
6
7
8
9
10
package sample;

import org.oasisopen.sca.annotation.Remotable;

@Remotable
public interface CallbackServlet {

	void sendGreeting(String greeting);
	
}