struts-config.xml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
  3. <struts-config>
  4. <form-beans>
  5. <form-bean name="codexForm" type="id.co.hanoman.config.form.CodexForm" />
  6. <form-bean name="reportForm" type="id.co.hanoman.ePayment.form.ReportForm" />
  7. </form-beans>
  8. <action-mappings>
  9. <action path="/login" scope="request" type="id.co.hanoman.log.action.LoginAction">
  10. <forward name="success" path="/home.jsp" />
  11. <forward name="failure" path="/failure.jsp" />
  12. </action>
  13. <!-- START CONFIG -->
  14. <!-- Adaptor -->
  15. <action path="/adaptor" scope="request" type="id.co.hanoman.config.action.AdaptorAction">
  16. <forward name="serverPort_list" path="/jsp/config/serverPort_list.jsp" />
  17. <forward name="serverPort_detail" path="/jsp/config/serverPort_detail.jsp" />
  18. <forward name="serverPort_edit" path="/jsp/config/serverPort_edit.jsp" />
  19. <forward name="serverPort_create" path="/jsp/config/serverPort_create.jsp" />
  20. <forward name="client_list" path="/jsp/config/client_list.jsp" />
  21. <forward name="client_detail" path="/jsp/config/client_detail.jsp" />
  22. <forward name="client_edit" path="/jsp/config/client_edit.jsp" />
  23. <forward name="client_create" path="/jsp/config/client_create.jsp" />
  24. <forward name="adaptor_audit" path="/jsp/config/adaptor_audit.jsp" />
  25. </action>
  26. <!-- Adaptor Param -->
  27. <action path="/adaptorParam" scope="request" type="id.co.hanoman.config.action.AdaptorParamAction">
  28. <forward name="list" path="/jsp/config/adaptorParam_list.jsp" />
  29. <forward name="detail" path="/jsp/config/adaptorParam_detail.jsp" />
  30. <forward name="create" path="/jsp/config/adaptorParam_create.jsp" />
  31. <forward name="edit" path="/jsp/config/adaptorParam_edit.jsp" />
  32. <forward name="edit_list" path="/jsp/config/adaptorParam_editList.jsp" />
  33. </action>
  34. <!-- Charge -->
  35. <action path="/charges" scope="request" type="id.co.hanoman.config.action.ChargesAction">
  36. <forward name="list" path="/jsp/config/charges_list.jsp" />
  37. <forward name="detail" path="/jsp/config/charges_detail.jsp" />
  38. <forward name="edit" path="/jsp/config/charges_edit.jsp" />
  39. </action>
  40. <!-- Codex -->
  41. <action path="/codex" name="codexForm" scope="request" type="id.co.hanoman.config.action.CodexAction">
  42. <forward name="list" path="/jsp/config/codex_list.jsp" />
  43. <forward name="detail" path="/jsp/config/codex_detail.jsp" />
  44. <forward name="create" path="/jsp/config/codex_create.jsp" />
  45. <forward name="edit" path="/jsp/config/codex_edit.jsp" />
  46. </action>
  47. <!-- Dbconn -->
  48. <action path="/dbconn" scope="request" type="id.co.hanoman.config.action.DbconnAction">
  49. <forward name="list" path="/jsp/config/dbconn_list.jsp" />
  50. <forward name="detail" path="/jsp/config/dbconn_detail.jsp" />
  51. <forward name="create" path="/jsp/config/dbconn_create.jsp" />
  52. <forward name="edit" path="/jsp/config/dbconn_edit.jsp" />
  53. </action>
  54. <!-- Dbquery -->
  55. <action path="/dbquery" scope="request" type="id.co.hanoman.config.action.DbQueryAction">
  56. <forward name="list" path="/jsp/config/dbquery_list.jsp" />
  57. <forward name="detail" path="/jsp/config/dbquery_detail.jsp" />
  58. <forward name="create" path="/jsp/config/dbquery_create.jsp" />
  59. <forward name="edit" path="/jsp/config/dbquery_edit.jsp" />
  60. </action>
  61. <!-- Device Teller -->
  62. <action path="/devTellerMap" scope="request" type="id.co.hanoman.config.action.DevTellerMapAction">
  63. <forward name="list" path="/jsp/config/devTellerMap_list.jsp" />
  64. <forward name="detail" path="/jsp/config/devTellerMap_detail.jsp" />
  65. <forward name="create" path="/jsp/config/devTellerMap_create.jsp" />
  66. <forward name="edit" path="/jsp/config/devTellerMap_edit.jsp" />
  67. </action>
  68. <!-- Encrypt Password -->
  69. <action path="/encryptPassword" scope="request" type="id.co.hanoman.config.action.EncryptPasswordAction">
  70. <forward name="encrypt_passwd" path="/jsp/config/encrypt_passwd.jsp" />
  71. </action>
  72. <!-- Eod Config -->
  73. <action path="/eodConfig" scope="request" type="id.co.hanoman.config.action.EodAction">
  74. <forward name="detail" path="/jsp/config/eodConfig.jsp" />
  75. </action>
  76. <!-- Cleaner -->
  77. <action path="/cleaner" scope="request" type="id.co.hanoman.config.action.CleanerAction">
  78. <forward name="cleaner" path="/jsp/config/cleaner.jsp" />
  79. </action>
  80. <!-- Error Map -->
  81. <action path="/errorMap" scope="request" type="id.co.hanoman.config.action.ErrorMapAction">
  82. <forward name="list" path="/jsp/config/errorMap_list.jsp" />
  83. <forward name="detail" path="/jsp/config/errorMap_detail.jsp" />
  84. <forward name="create" path="/jsp/config/errorMap_create.jsp" />
  85. <forward name="edit" path="/jsp/config/errorMap_edit.jsp" />
  86. <forward name="edit_list" path="/jsp/config/errorMap_editList.jsp" />
  87. </action>
  88. <!-- Host -->
  89. <action path="/host" scope="request" type="id.co.hanoman.config.action.HostAction">
  90. <forward name="list" path="/jsp/config/host_list.jsp" />
  91. <forward name="detail" path="/jsp/config/host_detail.jsp" />
  92. <forward name="create" path="/jsp/config/host_create.jsp" />
  93. <forward name="edit" path="/jsp/config/host_edit.jsp" />
  94. </action>
  95. <!-- Mapping -->
  96. <action path="/mapping" scope="request" type="id.co.hanoman.config.action.MappingAction">
  97. <forward name="list" path="/jsp/config/mapping_list.jsp" />
  98. <forward name="detail" path="/jsp/config/mapping_detail.jsp" />
  99. <forward name="detail_GroupLine" path="/jsp/config/mapping_GroupLine.jsp" />
  100. <forward name="create" path="/jsp/config/mapping_create.jsp" />
  101. <forward name="add_mgLine" path="/jsp/config/mappingGroupLine_add.jsp" />
  102. <forward name="edit" path="/jsp/config/mapping_edit.jsp" />
  103. </action>
  104. <!-- Monitor -->
  105. <action path="/monitor" scope="request" type="id.co.hanoman.config.action.MonitorAction">
  106. <forward name="monitor" path="/jsp/config/monitor_list.jsp" />
  107. <forward name="monitor_stats" path="/jsp/config/monitor_stats.jsp" />
  108. </action>
  109. <!-- Parser -->
  110. <action path="/parser" scope="request" type="id.co.hanoman.config.action.ParserAction">
  111. <forward name="list" path="/jsp/config/parser_list.jsp" />
  112. <forward name="detail" path="/jsp/config/parser_detail.jsp" />
  113. <forward name="create" path="/jsp/config/parser_create.jsp" />
  114. <forward name="edit" path="/jsp/config/parser_edit.jsp" />
  115. </action>
  116. <!-- Routing table -->
  117. <action path="/routingTable" scope="request" type="id.co.hanoman.config.action.RoutingTableAction">
  118. <forward name="list" path="/jsp/config/routingTable_list.jsp" />
  119. <forward name="detail" path="/jsp/config/routingTable_detail.jsp" />
  120. <forward name="create" path="/jsp/config/routingTable_create.jsp" />
  121. <forward name="edit" path="/jsp/config/routingTable_edit.jsp" />
  122. <forward name="edit_list" path="/jsp/config/routingTable_editList.jsp" />
  123. </action>
  124. <!-- Parameter Map -->
  125. <action path="/paramMap" scope="request" type="id.co.hanoman.config.action.ParamMapAction">
  126. <forward name="list" path="/jsp/config/paramMap_list.jsp" />
  127. <forward name="detail" path="/jsp/config/paramMap_detail.jsp" />
  128. <forward name="create" path="/jsp/config/paramMap_create.jsp" />
  129. <forward name="edit" path="/jsp/config/paramMap_edit.jsp" />
  130. <forward name="edit_list" path="/jsp/config/paramMap_editList.jsp" />
  131. </action>
  132. <!-- File Param -->
  133. <action path="/fileParam" scope="request" name="fileParam" type="id.co.hanoman.config.action.FileParamAction">
  134. <forward name="list" path="/jsp/config/fileParam_list.jsp" />
  135. <forward name="detail" path="/jsp/config/fileParam_detail.jsp" />
  136. <forward name="create" path="/jsp/config/fileParam_create.jsp" />
  137. <forward name="edit" path="/jsp/config/fileParam_edit.jsp" />
  138. <forward name="edit_list" path="/jsp/config/fileParam_editList.jsp" />
  139. </action>
  140. <!-- Rpg Call -->
  141. <action path="/rpgCall" scope="request" type="id.co.hanoman.config.action.RpgCallAction">
  142. <forward name="list" path="/jsp/config/rpgCall_list.jsp" />
  143. <forward name="detail" path="/jsp/config/rpgCall_detail.jsp" />
  144. <forward name="create" path="/jsp/config/rpgCall_create.jsp" />
  145. <forward name="edit" path="/jsp/config/rpgCall_edit.jsp" />
  146. </action>
  147. <!-- END CONFIG -->
  148. <!-- START EPAYMENT -->
  149. <!-- App Setting -->
  150. <action path="/appSetting" scope="request" type="id.co.hanoman.ePayment.action.AppSettingAction">
  151. <forward name="list" path="/jsp/ePayment/appSetting_list.jsp" />
  152. <forward name="detail" path="/jsp/ePayment/appSetting_detail.jsp" />
  153. <forward name="create" path="/jsp/ePayment/appSetting_create.jsp" />
  154. <forward name="edit" path="/jsp/ePayment/appSetting_edit.jsp" />
  155. </action>
  156. <!-- App User -->
  157. <action path="/appUser" scope="request" type="id.co.hanoman.ePayment.action.AppUserAction">
  158. <forward name="list" path="/jsp/ePayment/appUser_list.jsp" />
  159. <forward name="detail" path="/jsp/ePayment/appUser_detail.jsp" />
  160. <forward name="create" path="/jsp/ePayment/appUser_create.jsp" />
  161. <forward name="edit" path="/jsp/ePayment/appUser_edit.jsp" />
  162. </action>
  163. <!-- Biller Category -->
  164. <action path="/billerCategory" scope="request" type="id.co.hanoman.ePayment.action.BillerCategoryAction">
  165. <forward name="list" path="/jsp/ePayment/billerCategory_list.jsp" />
  166. <forward name="detail" path="/jsp/ePayment/billerCategory_detail.jsp" />
  167. <forward name="create" path="/jsp/ePayment/billerCategory_create.jsp" />
  168. <forward name="edit" path="/jsp/ePayment/billerCategory_edit.jsp" />
  169. </action>
  170. <!-- Biller Data -->
  171. <action path="/billerData" scope="request" type="id.co.hanoman.ePayment.action.BillerDataAction">
  172. <forward name="list" path="/jsp/ePayment/billerData_list.jsp" />
  173. <forward name="detail" path="/jsp/ePayment/billerData_detail.jsp" />
  174. <forward name="create" path="/jsp/ePayment/billerData_create.jsp" />
  175. <forward name="edit" path="/jsp/ePayment/billerData_edit.jsp" />
  176. <forward name="eod_notification" path="/jsp/ePayment/eodConfig_notification.jsp" />
  177. </action>
  178. <!-- Epay Privilege -->
  179. <action path="/epayPrivilege" scope="request" type="id.co.hanoman.ePayment.action.EpayPrivilegeAction">
  180. <forward name="list" path="/jsp/ePayment/epay_privilege_list.jsp" />
  181. <forward name="detail" path="/jsp/ePayment/epay_privilege_detail.jsp" />
  182. <forward name="create" path="/jsp/ePayment/epay_privilege_create.jsp" />
  183. <forward name="edit" path="/jsp/ePayment/epay_privilege_edit.jsp" />
  184. </action>
  185. <!-- Epay Role -->
  186. <action path="/epayRole" scope="request" type="id.co.hanoman.ePayment.action.EpayRoleAction">
  187. <forward name="list" path="/jsp/ePayment/epay_role_list.jsp" />
  188. <forward name="detail" path="/jsp/ePayment/epay_role_detail.jsp" />
  189. <forward name="create" path="/jsp/ePayment/epay_role_create.jsp" />
  190. <forward name="edit" path="/jsp/ePayment/epay_role_edit.jsp" />
  191. </action>
  192. <!-- Maintain Biller Group -->
  193. <action path="/billerGroup" scope="request" type="id.co.hanoman.ePayment.action.MaintainBillerGroupAction">
  194. <forward name="edit" path="/jsp/ePayment/billerGroup_edit.jsp" />
  195. </action>
  196. <!-- Nh Biller Config -->
  197. <action path="/nhBillerConfig" scope="request" type="id.co.hanoman.ePayment.action.NhBillerConfigAction">
  198. <forward name="list" path="/jsp/ePayment/nhBillerConfig_list.jsp" />
  199. <forward name="detail" path="/jsp/ePayment/nhBillerConfig_detail.jsp" />
  200. <forward name="create" path="/jsp/ePayment/nhBillerConfig_create.jsp" />
  201. <forward name="edit" path="/jsp/ePayment/nhBillerConfig_edit.jsp" />
  202. <forward name="list_monitoring" path="/jsp/ePayment/sync_monitoring.jsp" />
  203. </action>
  204. <!-- Nh Log Activity -->
  205. <action path="/nhLogActivity" scope="request" type="id.co.hanoman.ePayment.action.NhLogActivityAction">
  206. <forward name="detail" path="/jsp/ePayment/nhLogActivity_detail.jsp" />
  207. <forward name="list" path="/jsp/ePayment/nhLogActivity_list.jsp" />
  208. </action>
  209. <!-- Nh Server Config -->
  210. <action path="/nhServerConfig" scope="request" type="id.co.hanoman.ePayment.action.NhServerConfigAction">
  211. <forward name="lastSynch" path="/jsp/ePayment/lastSynch_config.jsp" />
  212. </action>
  213. <!-- Report -->
  214. <action path="/report" name="reportForm" scope="request" type="id.co.hanoman.ePayment.action.ReportAction">
  215. <forward name="list" path="/jsp/ePayment/report_list.jsp" />
  216. <forward name="detail" path="/jsp/ePayment/report_detail.jsp" />
  217. <forward name="create" path="/jsp/ePayment/report_create.jsp" />
  218. <forward name="edit" path="/jsp/ePayment/report_edit.jsp" />
  219. <forward name="report" path="/jsp/ePayment/report.jsp" />
  220. </action>
  221. <!-- END EPAYMENT -->
  222. <!-- START LOG -->
  223. <!-- Dlog -->
  224. <action path="/dlog" scope="request" type="id.co.hanoman.log.action.DlogAction">
  225. <forward name="list" path="/jsp/log/dlog_list.jsp" />
  226. <forward name="detail" path="/jsp/log/dlog_detail.jsp" />
  227. <forward name="detail_service" path="/jsp/log/dlogService_detail.jsp" />
  228. </action>
  229. <!-- END LOG -->
  230. <!-- START MWAPP -->
  231. <!-- Attribute -->
  232. <action path="/attribute" scope="request" type="id.co.hanoman.mwapp.action.AttributeAction">
  233. <forward name="list" path="/jsp/mwapp/attribute_list.jsp" />
  234. <forward name="detail" path="/jsp/mwapp/attribute_detail.jsp" />
  235. <forward name="create" path="/jsp/mwapp/attribute_create.jsp" />
  236. <forward name="edit" path="/jsp/mwapp/attribute_edit.jsp" />
  237. </action>
  238. <!-- Privilege -->
  239. <action path="/privilege" scope="request" type="id.co.hanoman.mwapp.action.PrivilegeAction">
  240. <forward name="list" path="/jsp/mwapp/privilege_list.jsp" />
  241. <forward name="detail" path="/jsp/mwapp/privilege_detail.jsp" />
  242. <forward name="create" path="/jsp/mwapp/privilege_create.jsp" />
  243. <forward name="edit" path="/jsp/mwapp/privilege_edit.jsp" />
  244. </action>
  245. <!-- Role -->
  246. <action path="/role" scope="request" type="id.co.hanoman.mwapp.action.RoleAction">
  247. <forward name="list" path="/jsp/mwapp/role_list.jsp" />
  248. <forward name="detail" path="/jsp/mwapp/role_detail.jsp" />
  249. <forward name="create" path="/jsp/mwapp/role_create.jsp" />
  250. <forward name="edit" path="/jsp/mwapp/role_edit.jsp" />
  251. </action>
  252. <!-- END MWAPP -->
  253. <!-- START REKON -->
  254. <!-- Database Connection -->
  255. <action path="/databaseConnection" scope="request" type="id.co.hanoman.rekon.action.DatabaseConnectionAction">
  256. <forward name="list" path="/jsp/rekon/dbConnection_list.jsp" />
  257. <forward name="detail" path="/jsp/rekon/dbConnection_detail.jsp" />
  258. <forward name="create" path="/jsp/rekon/dbConnection_create.jsp" />
  259. <forward name="edit" path="/jsp/rekon/dbConnection_edit.jsp" />
  260. </action>
  261. <!-- Database Query -->
  262. <action path="/dataQuery" scope="request" type="id.co.hanoman.rekon.action.DataQueryAction">
  263. <forward name="list" path="/jsp/rekon/dataQuery_list.jsp" />
  264. <forward name="detail" path="/jsp/rekon/dataQuery_detail.jsp" />
  265. <forward name="create" path="/jsp/rekon/dataQuery_create.jsp" />
  266. <forward name="edit" path="/jsp/rekon/dataQuery_edit.jsp" />
  267. </action>
  268. <!-- Rekon Config -->
  269. <action path="/rekonConfig" scope="request" type="id.co.hanoman.rekon.action.RekonConfigAction">
  270. <forward name="list" path="/jsp/rekon/rekonConfig_list.jsp" />
  271. <forward name="detail" path="/jsp/rekon/rekonConfig_detail.jsp" />
  272. <forward name="create" path="/jsp/rekon/rekonConfig_create.jsp" />
  273. <forward name="create_reconProcess" path="/jsp/rekon/rekonConfig_createReconProcess.jsp" />
  274. <forward name="create_reconAction" path="/jsp/rekon/rekonConfig_createReconAction.jsp" />
  275. <forward name="edit" path="/jsp/rekon/rekonConfig_edit.jsp" />
  276. </action>
  277. <action path="/reconProcess" scope="request" type="id.co.hanoman.rekon.action.ReconProcessAction">
  278. <forward name="list" path="/jsp/rekon/reconProcess_list.jsp" />
  279. <forward name="detail" path="/jsp/rekon/reconProcess_detail.jsp" />
  280. <forward name="create" path="/jsp/rekon/reconProcess_create.jsp" />
  281. <forward name="edit" path="/jsp/rekon/reconProcess_edit.jsp" />
  282. </action>
  283. <action path="/reconAction" scope="request" type="id.co.hanoman.rekon.action.ReconActionAction">
  284. <forward name="list" path="/jsp/rekon/reconAction_list.jsp" />
  285. <forward name="detail" path="/jsp/rekon/reconAction_detail.jsp" />
  286. <forward name="create" path="/jsp/rekon/reconAction_create.jsp" />
  287. <forward name="edit" path="/jsp/rekon/reconAction_edit.jsp" />
  288. </action>
  289. <!-- END REKON -->
  290. <!-- UNUSED - ->
  291. <action path="/log" scope="request" type="id.co.hanoman.config.action.LogAction">
  292. <forward name="list" path="/jsp/config/log_list.jsp" />
  293. <forward name="detail" path="/jsp/config/log_detail.jsp" />
  294. </action>
  295. <action path="/masterLog" scope="request" type="id.co.hanoman.log.action.MasterLogAction">
  296. <forward name="list" path="/jsp/log/masterLog_list.jsp" />
  297. <forward name="d_log" path="/jsp/log/log_detail.jsp" />
  298. </action>
  299. <action path="/isoLog" scope="request" type="id.co.hanoman.log.action.IsoLogAction">
  300. <forward name="list" path="/jsp/log/isoLog_list.jsp" />
  301. <forward name="d_iso" path="/jsp/log/isoLogView_detail.jsp" />
  302. </action>
  303. <action path="/abcsLog" scope="request" type="id.co.hanoman.log.action.AbcsLogAction">
  304. <forward name="list" path="/jsp/log/abcsLog_list.jsp" />
  305. <forward name="d_abcs" path="/jsp/log/abcsLogView_detail.jsp" />
  306. </action>
  307. <!- - -->
  308. </action-mappings>
  309. <message-resources parameter="ApplicationResources" />
  310. </struts-config>