}
public ActionForward printJuryElementsDocument(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
HttpServletResponse response) throws IOException {
final PhdThesisJuryElementsDocument report = new PhdThesisJuryElementsDocument(getProcess(request));
writeFile(response, report.getReportFileName() + ".pdf", "application/pdf",
ReportsUtils.exportToProcessedPdfAsByteArray(report));
return null;
}