summaryrefslogtreecommitdiffstats
path: root/sandbox/sebastien/java/shell/modules/binding-http-runtime/src/test/java/org/apache/tuscany/sca/binding/http/Helloworld.java
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-09-07 23:52:54 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-09-07 23:52:54 +0000
commitd123827b572d59f86e23d4e7fac42864d646ee60 (patch)
treee85a7e9a64391cf9b11830b5b6654dd51185be0d /sandbox/sebastien/java/shell/modules/binding-http-runtime/src/test/java/org/apache/tuscany/sca/binding/http/Helloworld.java
parentba5e7230636b321793db90d642b066b423d59c34 (diff)
Sandbox to experiment with deployment and management commands.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@993560 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/sebastien/java/shell/modules/binding-http-runtime/src/test/java/org/apache/tuscany/sca/binding/http/Helloworld.java')
-rw-r--r--sandbox/sebastien/java/shell/modules/binding-http-runtime/src/test/java/org/apache/tuscany/sca/binding/http/Helloworld.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/sandbox/sebastien/java/shell/modules/binding-http-runtime/src/test/java/org/apache/tuscany/sca/binding/http/Helloworld.java b/sandbox/sebastien/java/shell/modules/binding-http-runtime/src/test/java/org/apache/tuscany/sca/binding/http/Helloworld.java
new file mode 100644
index 0000000000..b7d77bced6
--- /dev/null
+++ b/sandbox/sebastien/java/shell/modules/binding-http-runtime/src/test/java/org/apache/tuscany/sca/binding/http/Helloworld.java
@@ -0,0 +1,8 @@
+package org.apache.tuscany.sca.binding.http;
+
+import org.oasisopen.sca.annotation.Remotable;
+
+@Remotable
+public interface Helloworld {
+ String sayHello(String name);
+}