public ActionForward prepareCreatePaymentCodes(final ActionMapping mapping, final ActionForm form,
final HttpServletRequest request, final HttpServletResponse response) {
String typeString = request.getParameter("type");
PaymentCodeType type = PaymentCodeType.valueOf(typeString);
CandidacyProcessPaymentCodeBean bean = new CandidacyProcessPaymentCodeBean(type);
request.setAttribute("bean", bean);
return mapping.findForward("create");