summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-10-14 17:08:37 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-10-14 17:08:37 +0000
commitb9c1e93951e71d729ea283e96f39729033465c57 (patch)
treefa1fc24c9618cb0ed931216e371d452e566968cc /sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java
parenta5fd66b093d087b2062e9143c0c4732ed98d0ed9 (diff)
Add a variant of helloworld-jsp-google-appengine that loads the Tuscany SCA node from the people.apache.org
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@825195 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java')
-rw-r--r--sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java b/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java
new file mode 100644
index 0000000000..53ff7a5ca1
--- /dev/null
+++ b/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package sample;
+
+public interface HelloworldService {
+
+ String sayHello(String name);
+
+}