Thomas Setiabudi [https://community.jboss.org/people/thomas.setiabudi] created the discussion
"Re: notifications with attachments" To view the discussion, visit: https://community.jboss.org/message/787565#787565 -------------------------------------------------------------- Hi jnorris, Human Task by default support attachment, here you go Attachment attachment = new Attachment(); attachment.setAccessType(AccessType.Inline); attachment.setAttachedAt(new java.util.Date()); attachment.setAttachedBy(new User(userLogon)); attachment.setContentType("image"); attachment.setName("myTaskAttachment"); attachment.setSize(20000); // file is a byte[] variable Content content = new Content(file); attachment.setContent(content); TaskClient taskClient = getTaskClient(); BlockingAddAttachmentResponseHandler responseHandler = new BlockingAddAttachmentResponseHandler(); taskClient.addAttachment(taskId, attachment, content, responseHandler); Map<String, Long> result = new HashMap<String, Long>(2); result.put("attachmentId", responseHandler.getAttachmentId()); result.put("contentId", responseHandler.getContentId()); Regards, Thomas Setiabudi -------------------------------------------------------------- Reply to this message by going to Community [https://community.jboss.org/message/787565#787565] Start a new discussion in jBPM at Community [https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]
_______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
