summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2008-12-15 12:03:10 +0000
committeredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2008-12-15 12:03:10 +0000
commitdca2ad000553723f9e0883611e4accfbc79b4482 (patch)
tree598ca83ee0274b742a17816ecd5b3a04a4f54a20
parentd4c3f779fa9eeee014526fccf40aa2108c579f0b (diff)
Fixes to test application - @Remotable added to service interface
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@726689 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java3
3 files changed, 5 insertions, 2 deletions
diff --git a/java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java b/java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java
index 1e10cc9024..0c3a566508 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java
@@ -13,7 +13,7 @@ import org.osoa.sca.annotations.Property;
public class ASM_0002_Client implements TestInvocation {
@Property
- private String testName = "ASM_xxxx";
+ public String testName = "ASM_xxxx";
@Reference
public Service1 reference1;
diff --git a/java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java b/java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java
index 437ded8cea..c4d4be149f 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java
@@ -15,7 +15,7 @@ import java.util.List;
public class ASM_0003_Client implements TestInvocation {
@Property
- private String testName = "ASM_xxxx";
+ public String testName = "ASM_xxxx";
@Reference
public List<Service1> reference1;
diff --git a/java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java b/java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java
index e33ab66bf6..689cf19352 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java
@@ -1,10 +1,13 @@
package test;
+import org.osoa.sca.annotations.Remotable;
+
/**
* Basic interface to invoke testcases
* @author MikeEdwards
*
*/
+@Remotable
public interface TestInvocation {
/**