diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-05-10 06:33:33 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-05-10 06:33:33 +0000 |
commit | f994244a9382082a12137de66b7506f97bda3e99 (patch) | |
tree | 7679e75f9c05b44d90dea43353c1208aca65f6ec /sca-java-2.x/trunk/testing/itest | |
parent | 6821f16154e5b7cc3d6eeef5f9048b935ef3631e (diff) |
Make the test interface remotable
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1101335 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/testing/itest')
-rw-r--r-- | sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java b/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java index 1cb9b813f2..f08412d4bf 100644 --- a/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java +++ b/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java @@ -19,6 +19,9 @@ package itest.nodes.sac; +import org.oasisopen.sca.annotation.Remotable; + +@Remotable public interface Helloworld { String sayHello(String name) throws Exception; |