Uses of Interface
org.camunda.bpm.engine.task.Attachment
- 
Packages that use Attachment Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
 Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
 Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
 RepositoryService: ManagesDeployments
 RuntimeService: For starting and searchingProcessInstances
 TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
 IdentityService: Used for managingUsers,Groups and the relations between them
 ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
 HistoryService: Exposes information about ongoing and past process instances.
 FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cmd org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.rest.dto.task 
- 
- 
Uses of Attachment in org.camunda.bpm.engineMethods in org.camunda.bpm.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 content please use method in runtime service to operate on process instance.AttachmentTaskService. 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 content please use method in runtime service to operate on process instance Either taskId or processInstanceId has to be providedAttachmentTaskService. getAttachment(java.lang.String attachmentId)Retrieve a particular attachmentAttachmentTaskService. getTaskAttachment(java.lang.String taskId, java.lang.String attachmentId)Retrieve a particular attachment to the given task id and attachment idMethods in org.camunda.bpm.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.camunda.bpm.engine with parameters of type Attachment Modifier and Type Method Description voidTaskService. saveAttachment(Attachment attachment)Update the name and decription of an attachment
- 
Uses of Attachment in org.camunda.bpm.engine.implMethods in org.camunda.bpm.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)AttachmentTaskServiceImpl. getTaskAttachment(java.lang.String taskId, java.lang.String attachmentId)Methods in org.camunda.bpm.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.camunda.bpm.engine.impl with parameters of type Attachment Modifier and Type Method Description voidTaskServiceImpl. saveAttachment(Attachment attachment)
- 
Uses of Attachment in org.camunda.bpm.engine.impl.cmdFields in org.camunda.bpm.engine.impl.cmd declared as Attachment Modifier and Type Field Description protected AttachmentSaveAttachmentCmd. attachmentMethods in org.camunda.bpm.engine.impl.cmd that return Attachment Modifier and Type Method Description AttachmentCreateAttachmentCmd. execute(CommandContext commandContext)AttachmentGetAttachmentCmd. execute(CommandContext commandContext)AttachmentGetTaskAttachmentCmd. execute(CommandContext commandContext)Methods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type Attachment Modifier and Type Method Description java.util.List<Attachment>GetProcessInstanceAttachmentsCmd. execute(CommandContext commandContext)java.util.List<Attachment>GetTaskAttachmentsCmd. execute(CommandContext commandContext)Constructors in org.camunda.bpm.engine.impl.cmd with parameters of type Attachment Constructor Description SaveAttachmentCmd(Attachment attachment)
- 
Uses of Attachment in org.camunda.bpm.engine.impl.persistence.entityClasses in org.camunda.bpm.engine.impl.persistence.entity that implement Attachment Modifier and Type Class Description classAttachmentEntityMethods in org.camunda.bpm.engine.impl.persistence.entity that return Attachment Modifier and Type Method Description AttachmentAttachmentManager. findAttachmentByTaskIdAndAttachmentId(java.lang.String taskId, java.lang.String attachmentId)Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type Attachment Modifier and Type Method Description java.util.List<Attachment>AttachmentManager. findAttachmentsByProcessInstanceId(java.lang.String processInstanceId)java.util.List<Attachment>AttachmentManager. findAttachmentsByTaskId(java.lang.String taskId)
- 
Uses of Attachment in org.camunda.bpm.engine.rest.dto.taskMethods in org.camunda.bpm.engine.rest.dto.task with parameters of type Attachment Modifier and Type Method Description static AttachmentDtoAttachmentDto. fromAttachment(Attachment attachment)
 
-