return mapping.findForward("prepareCreateNewRequest");
}
public ActionForward createNewRequest(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) {
PhdAcademicServiceRequestCreateBean academicServiceRequestCreateBean = getPhdAcademicServiceRequestCreateBean();
try {
academicServiceRequestCreateBean.createNewRequest();
} catch (PhdDomainOperationException exception) {
addErrorMessage(request, exception.getMessage(), new String[0]);
return prepareCreateNewRequest(mapping, form, request, response);
}