// Schedule first thesis meeting
public ActionForward prepareScheduleFirstThesisMeeting(ActionMapping mapping, ActionForm actionForm,
HttpServletRequest request, HttpServletResponse response) {
final PhdThesisProcessBean bean = new PhdThesisProcessBean();
final PhdThesisProcess thesisProcess = getProcess(request);
bean.setThesisProcess(thesisProcess);
setDefaultMeetingMailInformation(bean, thesisProcess);
request.setAttribute("thesisProcessBean", bean);
return mapping.findForward("scheduleFirstThesisMeeting");
}