Uses of Interface
org.activiti.engine.task.Attachment
-
Packages that use Attachment Package Description org.activiti.engine org.activiti.engine.impl org.activiti.engine.impl.cmd org.activiti.engine.impl.persistence.entity -
-
Uses of Attachment in org.activiti.engine
Methods in org.activiti.engine that return Attachment Modifier and Type Method Description AttachmentTaskService. createAttachment(java.lang.String attachmentType, java.lang.String taskId, java.lang.String processInstanceId, java.lang.String attachmentName, java.lang.String attachmentDescription, java.io.InputStream content)Add a new attachment to a task and/or a process instance and use an input stream to provide the contentAttachmentTaskService. createAttachment(java.lang.String attachmentType, java.lang.String taskId, java.lang.String processInstanceId, java.lang.String attachmentName, java.lang.String attachmentDescription, java.lang.String url)Add a new attachment to a task and/or a process instance and use an url as the contentAttachmentTaskService. getAttachment(java.lang.String attachmentId)Retrieve a particular attachmentMethods in org.activiti.engine that return types with arguments of type Attachment Modifier and Type Method Description java.util.List<Attachment>TaskService. getProcessInstanceAttachments(java.lang.String processInstanceId)The list of attachments associated to a process instancejava.util.List<Attachment>TaskService. getTaskAttachments(java.lang.String taskId)The list of attachments associated to a taskMethods in org.activiti.engine with parameters of type Attachment Modifier and Type Method Description voidTaskService. saveAttachment(Attachment attachment)Update the name and description of an attachment -
Uses of Attachment in org.activiti.engine.impl
Methods in org.activiti.engine.impl that return Attachment Modifier and Type Method Description AttachmentTaskServiceImpl. createAttachment(java.lang.String attachmentType, java.lang.String taskId, java.lang.String processInstanceId, java.lang.String attachmentName, java.lang.String attachmentDescription, java.io.InputStream content)AttachmentTaskServiceImpl. createAttachment(java.lang.String attachmentType, java.lang.String taskId, java.lang.String processInstanceId, java.lang.String attachmentName, java.lang.String attachmentDescription, java.lang.String url)AttachmentTaskServiceImpl. getAttachment(java.lang.String attachmentId)Methods in org.activiti.engine.impl that return types with arguments of type Attachment Modifier and Type Method Description java.util.List<Attachment>TaskServiceImpl. getProcessInstanceAttachments(java.lang.String processInstanceId)java.util.List<Attachment>TaskServiceImpl. getTaskAttachments(java.lang.String taskId)Methods in org.activiti.engine.impl with parameters of type Attachment Modifier and Type Method Description voidTaskServiceImpl. saveAttachment(Attachment attachment) -
Uses of Attachment in org.activiti.engine.impl.cmd
Fields in org.activiti.engine.impl.cmd declared as Attachment Modifier and Type Field Description protected AttachmentSaveAttachmentCmd. attachmentMethods in org.activiti.engine.impl.cmd that return Attachment Modifier and Type Method Description AttachmentCreateAttachmentCmd. execute(CommandContext commandContext)AttachmentGetAttachmentCmd. execute(CommandContext commandContext)Methods in org.activiti.engine.impl.cmd that return types with arguments of type Attachment Modifier and Type Method Description java.util.List<? extends Attachment>GetProcessInstanceAttachmentsCmd. execute(CommandContext commandContext)java.util.List<? extends Attachment>GetTaskAttachmentsCmd. execute(CommandContext commandContext)Constructors in org.activiti.engine.impl.cmd with parameters of type Attachment Constructor Description SaveAttachmentCmd(Attachment attachment) -
Uses of Attachment in org.activiti.engine.impl.persistence.entity
Subinterfaces of Attachment in org.activiti.engine.impl.persistence.entity Modifier and Type Interface Description interfaceAttachmentEntityDeprecated.Classes in org.activiti.engine.impl.persistence.entity that implement Attachment Modifier and Type Class Description classAttachmentEntityImplDeprecated.
-