summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/sca/branches/tb3/archetypes/quickstart-stripes/src/main/resources/archetype-resources/src/main/java/stripes/action/BaseActionBean.java
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-03-19 17:02:07 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-03-19 17:02:07 +0000
commit875ac5d246878b199c393e9700c8a085c8939333 (patch)
treed5e3118530829e4b244de744ece37495142dafd5 /sandbox/ant/sca/branches/tb3/archetypes/quickstart-stripes/src/main/resources/archetype-resources/src/main/java/stripes/action/BaseActionBean.java
parent743de5fd012ae4e753a584e57ad1252aa9e6208f (diff)
[maven-release-plugin] copy for branch tb3
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@756088 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/ant/sca/branches/tb3/archetypes/quickstart-stripes/src/main/resources/archetype-resources/src/main/java/stripes/action/BaseActionBean.java')
-rw-r--r--sandbox/ant/sca/branches/tb3/archetypes/quickstart-stripes/src/main/resources/archetype-resources/src/main/java/stripes/action/BaseActionBean.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/sandbox/ant/sca/branches/tb3/archetypes/quickstart-stripes/src/main/resources/archetype-resources/src/main/java/stripes/action/BaseActionBean.java b/sandbox/ant/sca/branches/tb3/archetypes/quickstart-stripes/src/main/resources/archetype-resources/src/main/java/stripes/action/BaseActionBean.java
new file mode 100644
index 0000000000..e5e3149898
--- /dev/null
+++ b/sandbox/ant/sca/branches/tb3/archetypes/quickstart-stripes/src/main/resources/archetype-resources/src/main/java/stripes/action/BaseActionBean.java
@@ -0,0 +1,18 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+package ${package}.stripes.action;
+
+import net.sourceforge.stripes.action.ActionBean;
+import net.sourceforge.stripes.action.ActionBeanContext;
+
+public class BaseActionBean implements ActionBean {
+ private ActionBeanContext context;
+
+ public ActionBeanContext getContext() {
+ return context;
+ }
+ public void setContext(ActionBeanContext context) {
+ this.context = context;
+ }
+}