summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-06-22 12:56:09 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-06-22 12:56:09 +0000
commitbb971e90595e993de72bc4fc8a430fb18290ac1e (patch)
tree81130262367302f2f76552029a863663a13fc61c /sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
parent2053c07b1d8de5a7aba3155402cd7d0e42e6ab70 (diff)
TUSCANY-3517: Commit zip for new test callback sample for Florians GSoC project
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@956869 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java b/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
new file mode 100644
index 0000000000..3cb1b8a7d7
--- /dev/null
+++ b/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
@@ -0,0 +1,34 @@
+/*
+ * 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;
+
+import org.oasisopen.sca.annotation.Callback;
+import org.oasisopen.sca.annotation.Service;
+
+@Service(HelloworldService.class)
+public class HelloworldServiceImpl implements HelloworldService {
+
+ @Callback
+ private CallbackServlet callback;
+
+ public void sayHello(String name) {
+ callback.sendGreeting("Hello " + name + "!");
+ }
+
+}