Return-Path: X-Original-To: apmail-tuscany-commits-archive@www.apache.org Delivered-To: apmail-tuscany-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E35875986 for ; Tue, 10 May 2011 06:34:00 +0000 (UTC) Received: (qmail 7719 invoked by uid 500); 10 May 2011 06:34:00 -0000 Delivered-To: apmail-tuscany-commits-archive@tuscany.apache.org Received: (qmail 7677 invoked by uid 500); 10 May 2011 06:33:59 -0000 Mailing-List: contact commits-help@tuscany.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tuscany.apache.org Delivered-To: mailing list commits@tuscany.apache.org Received: (qmail 7664 invoked by uid 99); 10 May 2011 06:33:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 May 2011 06:33:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 May 2011 06:33:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3E92D23889ED; Tue, 10 May 2011 06:33:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1101335 - /tuscany/sca-java-2.x/trunk/testing/itest/nodes/helloworld-service-and-client/src/main/java/itest/nodes/sac/Helloworld.java Date: Tue, 10 May 2011 06:33:34 -0000 To: commits@tuscany.apache.org From: antelder@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110510063334.3E92D23889ED@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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;