| Package | Description |
|---|---|
| org.flowable.engine |
Public API of the Flowable 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) org.flowable.engine.task.Tasks,
such as claiming, completing and assigning tasks.IdentityService: Used for managing Users,
identity.Groups and the relations between them.ManagementService: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection 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.flowable.engine.compatibility | |
| org.flowable.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
| org.flowable.engine.impl.cmd | |
| org.flowable.engine.impl.persistence.entity |
| Modifier and Type | Method and Description |
|---|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
void |
TaskService.saveAttachment(Attachment attachment)
Update the name and description of an attachment
|
| Modifier and Type | Method and Description |
|---|---|
Attachment |
Flowable5CompatibilityHandler.createAttachment(String attachmentType,
String taskId,
String processInstanceId,
String attachmentName,
String attachmentDescription,
InputStream content,
String url) |
| Modifier and Type | Method and Description |
|---|---|
void |
Flowable5CompatibilityHandler.saveAttachment(Attachment attachment) |
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Method and Description |
|---|---|
List<Attachment> |
TaskServiceImpl.getProcessInstanceAttachments(String processInstanceId) |
List<Attachment> |
TaskServiceImpl.getTaskAttachments(String taskId) |
| Modifier and Type | Method and Description |
|---|---|
void |
TaskServiceImpl.saveAttachment(Attachment attachment) |
| Modifier and Type | Field and Description |
|---|---|
protected Attachment |
SaveAttachmentCmd.attachment |
| Modifier and Type | Method and Description |
|---|---|
Attachment |
GetAttachmentCmd.execute(CommandContext commandContext) |
Attachment |
CreateAttachmentCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
List<? extends Attachment> |
GetTaskAttachmentsCmd.execute(CommandContext commandContext) |
List<? extends Attachment> |
GetProcessInstanceAttachmentsCmd.execute(CommandContext commandContext) |
| Constructor and Description |
|---|
SaveAttachmentCmd(Attachment attachment) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
AttachmentEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AttachmentEntityImpl |
Copyright © 2019 Flowable. All rights reserved.