Rev 18 | Rev 20 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
18 | moos | 1 | <!DOCTYPE struts PUBLIC |
2 | "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" |
||
3 | "http://struts.apache.org/dtds/struts-2.0.dtd"> |
||
4 | |||
5 | <struts> |
||
6 | |||
7 | <package name="default" extends="hibernate-default"> |
||
8 | |||
19 | moos | 9 | <action name="LoginDo" method="verifyUser" class="ch.ffhs.webE.action.LoginAction"> |
10 | <result name="admin" type="redirect">/admin_index.jsp</result> |
||
11 | <result name="user" type="redirect">/user_index.jsp</result> |
||
18 | moos | 12 | <result name="failed" type="redirect">/index.jsp</result> |
13 | </action> |
||
19 | moos | 14 | |
18 | moos | 15 | </package> |
16 | </struts> |