if (requestParameterMap.containsKey(key) && requestParameterMap.get(key).equals("true")) {
MethodExpression fileDownloadListener = fileAttachmentsComponent.getFileDownloadListener();
if (fileDownloadListener != null) {
fileDownloadListener.invoke(
context.getELContext(), new Object[]{
new FileDownloadEvent(fileAttachmentsComponent, downloadAttachmentAction.getFileAttachment())});
}
}
}
}