public OperationAttachments getAttachments() {
return attachments;
}
public List<InputStream> getInputStreams() {
final OperationAttachments attachments = getAttachments();
if(attachments == null) {
return Collections.emptyList();
}
return attachments.getInputStreams();
}