You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2011/05/10 08:33:34 UTC

svn commit: r1101335 - /tuscany/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java

Author: antelder
Date: Tue May 10 06:33:33 2011
New Revision: 1101335

URL: http://svn.apache.org/viewvc?rev=1101335&view=rev
Log:
Make the test interface remotable

Modified:
    tuscany/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java

Modified: tuscany/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java?rev=1101335&r1=1101334&r2=1101335&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java (original)
+++ tuscany/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java Tue May 10 06:33:33 2011
@@ -19,6 +19,9 @@
 
 package itest.nodes.sac;
 
+import org.oasisopen.sca.annotation.Remotable;
+
+@Remotable
 public interface Helloworld {
     
     String sayHello(String name) throws Exception;