return mapping.findForward("chooseExport");
}
public ActionForward export(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)
throws IOException {
final FirstYearShiftsBean bean = getRenderedObject();
if (bean == null) {
return chooseExport(mapping, form, request, response);
}
final AcademicInterval executionYear = bean.getExecutionYear().getAcademicInterval();
final EntryPhase phase = bean.getEntryPhase();
final List<Degree> degrees =
Degree.readAllByDegreeType(DegreeType.BOLONHA_DEGREE, DegreeType.BOLONHA_INTEGRATED_MASTER_DEGREE);
if (executionYear == null) {
return chooseExport(mapping, form, request, response);