summaryrefslogtreecommitdiffstats
path: root/contrib/samples/async/sample-contribution-implementation-java-calculator-async/src/main/java/calculator/CalculateViaAsyncRef.java
blob: e370bd915b9a64a204fabfadcdf963a0b3d5dc4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package calculator;

import java.util.concurrent.Future;

import javax.xml.ws.AsyncHandler;
import javax.xml.ws.Response;

/**
 * client interface for async reference
 * @author kgoodson
 *
 */

public interface CalculateViaAsyncRef {

	public Response<String> calculate( Integer i1);
	
}