Uses of Interface
org.camunda.bpm.engine.task.Attachment

Packages that use Attachment
org.camunda.bpm.engine Public API of the camunda BPM engine.

Typical usage of the API starts by the creation of a ProcessEngineConfiguration (typically based on a configuration file), from which a ProcessEngine can be obtained.

Through the services obtained from such a ProcessEngine, BPM and workflow operation can be executed:

RepositoryService: Manages Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, 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   
 

Uses of Attachment in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return Attachment
 Attachment TaskService.createAttachment(String attachmentType, String taskId, String processInstanceId, String attachmentName, String attachmentDescription, InputStream content)
          Add a new attachment to a task and/or a process instance and use an input stream to provide the content
 Attachment TaskService.createAttachment(String attachmentType, String taskId, String processInstanceId, String attachmentName, String attachmentDescription, String url)
          Add a new attachment to a task and/or a process instance and use an url as the content
 Attachment TaskService.getAttachment(String attachmentId)
          Retrieve a particular attachment
 Attachment TaskService.getTaskAttachment(String taskId, String attachmentId)
          Retrieve a particular attachment to the given task id and attachment id
 

Methods in org.camunda.bpm.engine that return types with arguments of type Attachment
 List<Attachment> TaskService.getProcessInstanceAttachments(String processInstanceId)
          The list of attachments associated to a process instance
 List<Attachment> TaskService.getTaskAttachments(String taskId)
          The list of attachments associated to a task
 

Methods in org.camunda.bpm.engine with parameters of type Attachment
 void TaskService.saveAttachment(Attachment attachment)
          Update the name and decription of an attachment
 

Uses of Attachment in org.camunda.bpm.engine.impl
 

Methods in org.camunda.bpm.engine.impl that return Attachment
 Attachment TaskServiceImpl.createAttachment(String attachmentType, String taskId, String processInstanceId, String attachmentName, String attachmentDescription, InputStream content)
           
 Attachment TaskServiceImpl.createAttachment(String attachmentType, String taskId, String processInstanceId, String attachmentName, String attachmentDescription, String url)
           
 Attachment TaskServiceImpl.getAttachment(String attachmentId)
           
 Attachment TaskServiceImpl.getTaskAttachment(String taskId, String attachmentId)
           
 

Methods in org.camunda.bpm.engine.impl that return types with arguments of type Attachment
 List<Attachment> TaskServiceImpl.getProcessInstanceAttachments(String processInstanceId)
           
 List<Attachment> TaskServiceImpl.getTaskAttachments(String taskId)
           
 

Methods in org.camunda.bpm.engine.impl with parameters of type Attachment
 void TaskServiceImpl.saveAttachment(Attachment attachment)
           
 

Uses of Attachment in org.camunda.bpm.engine.impl.cmd
 

Fields in org.camunda.bpm.engine.impl.cmd declared as Attachment
protected  Attachment SaveAttachmentCmd.attachment
           
 

Methods in org.camunda.bpm.engine.impl.cmd that return Attachment
 Attachment GetTaskAttachmentCmd.execute(CommandContext commandContext)
           
 Attachment CreateAttachmentCmd.execute(CommandContext commandContext)
           
 Attachment GetAttachmentCmd.execute(CommandContext commandContext)
           
 

Methods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type Attachment
 List<Attachment> GetProcessInstanceAttachmentsCmd.execute(CommandContext commandContext)
           
 List<Attachment> GetTaskAttachmentsCmd.execute(CommandContext commandContext)
           
 

Constructors in org.camunda.bpm.engine.impl.cmd with parameters of type Attachment
SaveAttachmentCmd(Attachment attachment)
           
 

Uses of Attachment in org.camunda.bpm.engine.impl.persistence.entity
 

Classes in org.camunda.bpm.engine.impl.persistence.entity that implement Attachment
 class AttachmentEntity
           
 

Methods in org.camunda.bpm.engine.impl.persistence.entity that return Attachment
 Attachment AttachmentManager.findAttachmentByTaskIdAndAttachmentId(String taskId, String attachmentId)
           
 

Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type Attachment
 List<Attachment> AttachmentManager.findAttachmentsByProcessInstanceId(String processInstanceId)
           
 List<Attachment> AttachmentManager.findAttachmentsByTaskId(String taskId)
           
 



Copyright © 2015 camunda services GmbH. All rights reserved.