| Package | Description |
|---|---|
| org.flowable.batch.api | |
| org.flowable.batch.service.impl | |
| org.flowable.batch.service.impl.persistence.entity | |
| org.flowable.batch.service.impl.persistence.entity.data | |
| org.flowable.batch.service.impl.persistence.entity.data.impl | |
| 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) tasks, such as claiming, completing and assigning tasks.IdentityService: Used for managing users, 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.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
| org.flowable.engine.impl.cmd | |
| org.flowable.rest.service.api | |
| org.flowable.rest.service.api.management |
| Modifier and Type | Method and Description |
|---|---|
BatchPart |
BatchService.completeBatchPart(String batchPartId,
String status,
String resultJson) |
BatchPart |
BatchService.createBatchPart(Batch batch,
String status,
String scopeId,
String subScopeId,
String scopeType) |
BatchPart |
BatchService.getBatchPart(String id) |
| Modifier and Type | Method and Description |
|---|---|
List<BatchPart> |
BatchService.findBatchPartsByBatchId(String batchId) |
List<BatchPart> |
BatchService.findBatchPartsByBatchIdAndStatus(String batchId,
String status) |
List<BatchPart> |
BatchService.findBatchPartsByScopeIdAndType(String scopeId,
String scopeType) |
| Modifier and Type | Method and Description |
|---|---|
BatchPart |
BatchServiceImpl.completeBatchPart(String batchPartId,
String status,
String resultJson) |
BatchPart |
BatchServiceImpl.createBatchPart(Batch batch,
String status,
String scopeId,
String subScopeId,
String scopeType) |
| Modifier and Type | Method and Description |
|---|---|
List<BatchPart> |
BatchServiceImpl.findBatchPartsByBatchId(String batchId) |
List<BatchPart> |
BatchServiceImpl.findBatchPartsByBatchIdAndStatus(String batchId,
String status) |
List<BatchPart> |
BatchServiceImpl.findBatchPartsByScopeIdAndType(String scopeId,
String scopeType) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BatchPartEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
BatchPartEntityImpl |
| Modifier and Type | Method and Description |
|---|---|
List<BatchPart> |
BatchPartEntityManagerImpl.findBatchPartsByBatchId(String batchId) |
List<BatchPart> |
BatchPartEntityManager.findBatchPartsByBatchId(String batchId) |
List<BatchPart> |
BatchPartEntityManagerImpl.findBatchPartsByBatchIdAndStatus(String batchId,
String status) |
List<BatchPart> |
BatchPartEntityManager.findBatchPartsByBatchIdAndStatus(String batchId,
String status) |
List<BatchPart> |
BatchPartEntityManagerImpl.findBatchPartsByScopeIdAndType(String scopeId,
String scopeType) |
List<BatchPart> |
BatchPartEntityManager.findBatchPartsByScopeIdAndType(String scopeId,
String scopeType) |
| Modifier and Type | Method and Description |
|---|---|
List<BatchPart> |
BatchPartDataManager.findBatchPartsByBatchId(String batchId) |
List<BatchPart> |
BatchPartDataManager.findBatchPartsByBatchIdAndStatus(String batchId,
String status) |
List<BatchPart> |
BatchPartDataManager.findBatchPartsByScopeIdAndType(String scopeId,
String scopeType) |
| Modifier and Type | Method and Description |
|---|---|
List<BatchPart> |
MybatisBatchPartDataManager.findBatchPartsByBatchId(String batchId) |
List<BatchPart> |
MybatisBatchPartDataManager.findBatchPartsByBatchIdAndStatus(String batchId,
String status) |
List<BatchPart> |
MybatisBatchPartDataManager.findBatchPartsByScopeIdAndType(String scopeId,
String scopeType) |
| Modifier and Type | Method and Description |
|---|---|
BatchPart |
ManagementService.getBatchPart(String batchPartId) |
| Modifier and Type | Method and Description |
|---|---|
List<BatchPart> |
ManagementService.findBatchPartsByBatchId(String batchId) |
List<BatchPart> |
ManagementService.findBatchPartsByBatchIdAndStatus(String batchId,
String status) |
| Modifier and Type | Method and Description |
|---|---|
BatchPart |
ManagementServiceImpl.getBatchPart(String batchPartId) |
| Modifier and Type | Method and Description |
|---|---|
List<BatchPart> |
ManagementServiceImpl.findBatchPartsByBatchId(String batchId) |
List<BatchPart> |
ManagementServiceImpl.findBatchPartsByBatchIdAndStatus(String batchId,
String status) |
| Modifier and Type | Method and Description |
|---|---|
BatchPart |
GetBatchPartCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
List<BatchPart> |
FindBatchPartsByBatchIdCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
protected ProcessInstanceBatchMigrationPartResult |
GetProcessInstanceMigrationBatchResultCmd.convertFromBatchPart(BatchPart batchPart,
com.fasterxml.jackson.databind.ObjectMapper objectMapper) |
| Modifier and Type | Method and Description |
|---|---|
void |
BpmnRestApiInterceptor.accessBatchPartInfoById(BatchPart batchPart) |
BatchPartResponse |
RestResponseFactory.createBatchPartResponse(BatchPart batchPart) |
BatchPartResponse |
RestResponseFactory.createBatchPartResponse(BatchPart batchPart,
RestUrlBuilder urlBuilder) |
| Modifier and Type | Method and Description |
|---|---|
List<BatchPartResponse> |
RestResponseFactory.createBatchPartResponse(List<BatchPart> batchParts) |
| Modifier and Type | Method and Description |
|---|---|
protected BatchPart |
BatchPartBaseResource.getBatchPartById(String batchPartId) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
BatchPartBaseResource.validateBatchPart(BatchPart batchPart,
String batchPartId) |
Copyright © 2023 Flowable. All rights reserved.