aboutsummaryrefslogtreecommitdiff
path: root/id/ConfigWebTool/src/main/resources/struts.xml
diff options
context:
space:
mode:
authorThomas Lenz <tlenz@iaik.tugraz.at>2013-07-26 17:07:15 +0200
committerThomas Lenz <tlenz@iaik.tugraz.at>2013-07-26 17:07:15 +0200
commit99694b29f82f858f5b6163e6a3d6c11caaeb487e (patch)
treeb46883533cd71c9f47047c38b5c43469a311a731 /id/ConfigWebTool/src/main/resources/struts.xml
parentcc2e2e4ecf5bd8c4bbe16edba5a7d63fa808adcb (diff)
downloadmoa-id-spss-99694b29f82f858f5b6163e6a3d6c11caaeb487e.tar.gz
moa-id-spss-99694b29f82f858f5b6163e6a3d6c11caaeb487e.tar.bz2
moa-id-spss-99694b29f82f858f5b6163e6a3d6c11caaeb487e.zip
Configuration Web-Application
Diffstat (limited to 'id/ConfigWebTool/src/main/resources/struts.xml')
-rw-r--r--id/ConfigWebTool/src/main/resources/struts.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/id/ConfigWebTool/src/main/resources/struts.xml b/id/ConfigWebTool/src/main/resources/struts.xml
new file mode 100644
index 000000000..9faaaeceb
--- /dev/null
+++ b/id/ConfigWebTool/src/main/resources/struts.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE struts PUBLIC
+ "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
+ "http://struts.apache.org/dtds/struts-2.0.dtd">
+
+<struts>
+
+ <package name="default" namespace="/" extends="struts-default">
+
+ <default-interceptor-ref name="defaultStack"/>
+
+ <action name="index" method="start" class="at.gv.egovernment.moa.id.configuration.struts.action.IndexAction">
+ <result name="success">/index.jsp</result>
+ <interceptor-ref name="defaultStack"/>
+ </action>
+
+ <action name="error" method="error" class="at.gv.egovernment.moa.id.configuration.struts.action.IndexAction">
+ <result name="error">/error.jsp</result>
+ <interceptor-ref name="defaultStack"/>
+ </action>
+
+ <action name="main" method="generateMainFrame" class="at.gv.egovernment.moa.id.configuration.struts.action.MainAction">
+ <result name="success">/jsp/mainpage.jsp</result>
+ <result name="error">/error.jsp</result>
+ <interceptor-ref name="defaultStack"/>
+ </action>
+
+ <action name="listallapplications" method="listAllOnlineAppliactions" class="at.gv.egovernment.moa.id.configuration.struts.action.ListOAsAction">
+ <result name="success">/jsp/listOAs.jsp</result>
+ <result name="error">/error.jsp</result>
+ <interceptor-ref name="defaultStack"/>
+ </action>
+
+
+ </package>
+
+</struts> \ No newline at end of file