public ActionForward downloadRegistrationResultsSpreadsheet(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) throws Exception {
Registration registration = getDomainObject(request, "registrationId");
UTLScholarshipReportBeanFromRegistration bean = new UTLScholarshipReportBeanFromRegistration(registration);
Spreadsheet spreadsheet = bean.buildSpreadsheet();
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition", "attachment; filename=bolsa_accao_social_utl_" + registration.getNumber()
+ ".xls");
spreadsheet.exportToXLSSheet(response.getOutputStream());