}
public ActionForward printNotification(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws IOException {
final PhdNotificationDocument report = new PhdNotificationDocument(getNotification(request), getLanguage(request));
writeFile(response, report.getReportFileName() + ".pdf", "application/pdf",
ReportsUtils.exportToProcessedPdfAsByteArray(report));
return null;
}