summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/sca/branches/tb7/archetypes/quickstart/src/main/resources/archetype-resources/src/main/java/HelloworldImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/ant/sca/branches/tb7/archetypes/quickstart/src/main/resources/archetype-resources/src/main/java/HelloworldImpl.java')
-rw-r--r--sandbox/ant/sca/branches/tb7/archetypes/quickstart/src/main/resources/archetype-resources/src/main/java/HelloworldImpl.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/sandbox/ant/sca/branches/tb7/archetypes/quickstart/src/main/resources/archetype-resources/src/main/java/HelloworldImpl.java b/sandbox/ant/sca/branches/tb7/archetypes/quickstart/src/main/resources/archetype-resources/src/main/java/HelloworldImpl.java
new file mode 100644
index 0000000000..b787f956c7
--- /dev/null
+++ b/sandbox/ant/sca/branches/tb7/archetypes/quickstart/src/main/resources/archetype-resources/src/main/java/HelloworldImpl.java
@@ -0,0 +1,9 @@
+package ${package};
+
+public class HelloworldImpl implements HelloworldService {
+
+ public String sayHello(String name) {
+ return "Hello " + name;
+ }
+
+}