Uses of Interface
org.activiti.engine.task.Attachment
-
Packages that use Attachment Package Description org.activiti.engine Public API of the Activiti 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
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users.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.
-