Rev 23 | Rev 27 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 23 | Rev 26 | ||
---|---|---|---|
Line 12... | Line 12... | ||
12 | 12 | ||
13 | 13 | ||
14 | 14 | ||
15 | <!-- Admin environment -->
|
15 | <!-- Admin environment -->
|
16 | <package name="admin" namespace="/admin" extends="hibernate-default">
|
16 | <package name="admin" namespace="/admin" extends="hibernate-default">
|
- | 17 | ||
- | 18 | <!-- User management -->
|
|
17 | <action name="userAddForm">
|
19 | <action name="userAddForm">
|
18 | <result>/admin/userAddForm.jsp</result> |
20 | <result>/admin/userAddForm.jsp</result> |
19 | </action>
|
21 | </action>
|
20 | 22 | ||
21 | <action name="doUserAdd" method="add" class="ch.ffhs.webE.action.UserAction">
|
23 | <action name="doUserAdd" method="add" class="ch.ffhs.webE.action.UserAction">
|
Line 27... | Line 29... | ||
27 | </action>
|
29 | </action>
|
28 | 30 | ||
29 | <action name="deleteUser" method="delete" class="ch.ffhs.webE.action.UserAction">
|
31 | <action name="deleteUser" method="delete" class="ch.ffhs.webE.action.UserAction">
|
30 | <result name="success" type="redirect">/admin/userList</result> |
32 | <result name="success" type="redirect">/admin/userList</result> |
31 | </action>
|
33 | </action>
|
- | 34 | ||
- | 35 | ||
- | 36 | <!-- Relationship Type management -->
|
|
- | 37 | <action name="relTypeList" method="list" class="ch.ffhs.webE.action.RelationshipTypeAction">
|
|
- | 38 | <result name="success">/admin/relTypeList.jsp</result> |
|
- | 39 | </action>
|
|
- | 40 | ||
- | 41 | <action name="relTypeAddForm">
|
|
- | 42 | <result>/admin/relTypeAddForm.jsp</result> |
|
- | 43 | </action>
|
|
- | 44 | ||
- | 45 | <action name="doRelTypeAdd" method="add" class="ch.ffhs.webE.action.RelationshipTypeAction">
|
|
- | 46 | <result name="success" type="redirect">/admin/relTypeList</result> |
|
- | 47 | </action>
|
|
- | 48 | ||
- | 49 | <action name="deleteRelType" method="delete" class="ch.ffhs.webE.action.RelationshipTypeAction">
|
|
- | 50 | <result name="success" type="redirect">/admin/relTypeList</result> |
|
- | 51 | </action>
|
|
- | 52 | ||
32 | </package>
|
53 | </package>
|
33 | 54 | ||
34 | 55 | ||
35 | 56 | ||
36 | 57 |