From cdd8fe18f22a987f2fba5c8acec1389302f54eed Mon Sep 17 00:00:00 2001 From: slaws Date: Wed, 24 Nov 2010 11:30:52 +0000 Subject: Correct sample async operation name git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1038553 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/java/sampleasync/UpperAsyncService.java | 2 +- .../src/test/java/sampleasync/impl/UpperJavaAsyncServiceImpl.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'sca-java-2.x/trunk') diff --git a/sca-java-2.x/trunk/unreleased/samples/implementation-sample-async/src/test/java/sampleasync/UpperAsyncService.java b/sca-java-2.x/trunk/unreleased/samples/implementation-sample-async/src/test/java/sampleasync/UpperAsyncService.java index 019b0c2f12..cb4a1c0b42 100644 --- a/sca-java-2.x/trunk/unreleased/samples/implementation-sample-async/src/test/java/sampleasync/UpperAsyncService.java +++ b/sca-java-2.x/trunk/unreleased/samples/implementation-sample-async/src/test/java/sampleasync/UpperAsyncService.java @@ -32,5 +32,5 @@ import org.oasisopen.sca.annotation.Remotable; @AsyncInvocation public interface UpperAsyncService { - void upper(String s,ResponseDispatch response); + void upperAsync(String s,ResponseDispatch response); } diff --git a/sca-java-2.x/trunk/unreleased/samples/implementation-sample-async/src/test/java/sampleasync/impl/UpperJavaAsyncServiceImpl.java b/sca-java-2.x/trunk/unreleased/samples/implementation-sample-async/src/test/java/sampleasync/impl/UpperJavaAsyncServiceImpl.java index 33eb668e59..a354f75a6f 100644 --- a/sca-java-2.x/trunk/unreleased/samples/implementation-sample-async/src/test/java/sampleasync/impl/UpperJavaAsyncServiceImpl.java +++ b/sca-java-2.x/trunk/unreleased/samples/implementation-sample-async/src/test/java/sampleasync/impl/UpperJavaAsyncServiceImpl.java @@ -32,7 +32,7 @@ import sampleasync.UpperAsyncService; */ public class UpperJavaAsyncServiceImpl implements UpperAsyncService { - public void upper(String s,ResponseDispatch response) { + public void upperAsync(String s,ResponseDispatch response) { out.println("UpperServiceImple.upper(" + s + ")"); response.sendResponse(s.toUpperCase()); } -- cgit v1.2.3