| Package | Description |
|---|---|
| org.flowable.cmmn.api | |
| org.flowable.cmmn.engine.impl | |
| org.flowable.cmmn.rest.service.api | |
| org.flowable.cmmn.rest.service.api.management | |
| 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.job.service | |
| org.flowable.job.service.impl | |
| org.flowable.job.service.impl.cmd | |
| org.flowable.job.service.impl.persistence.entity | |
| org.flowable.job.service.impl.persistence.entity.data | |
| org.flowable.job.service.impl.persistence.entity.data.impl | |
| org.flowable.rest.service.api | |
| org.flowable.rest.service.api.management |
| Modifier and Type | Method and Description |
|---|---|
HistoryJob |
CmmnManagementService.moveDeadLetterJobToHistoryJob(String jobId,
int retries)
Moves a job that is in the dead letter job table back to be a history job,
and resetting the retries (as the retries was 0 when it was put into the dead letter job table).
|
| Modifier and Type | Method and Description |
|---|---|
HistoryJob |
CmmnManagementServiceImpl.moveDeadLetterJobToHistoryJob(String jobId,
int retries) |
| Modifier and Type | Method and Description |
|---|---|
void |
CmmnRestApiInterceptor.accessHistoryJobInfoById(HistoryJob historyJob) |
HistoryJobResponse |
CmmnRestResponseFactory.createHistoryJobResponse(HistoryJob job) |
HistoryJobResponse |
CmmnRestResponseFactory.createHistoryJobResponse(HistoryJob job,
RestUrlBuilder urlBuilder) |
void |
CmmnRestApiInterceptor.deleteHistoryJob(HistoryJob historyJob) |
| Modifier and Type | Method and Description |
|---|---|
List<HistoryJobResponse> |
CmmnRestResponseFactory.createHistoryJobResponseList(List<HistoryJob> jobs) |
| Modifier and Type | Method and Description |
|---|---|
protected HistoryJob |
JobBaseResource.getHistoryJobById(String jobId) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
JobBaseResource.validateHistoryJob(HistoryJob job,
String jobId) |
| Modifier and Type | Method and Description |
|---|---|
HistoryJob |
ManagementService.moveDeadLetterJobToHistoryJob(String jobId,
int retries)
Moves a job that is in the dead letter job table back to be a history job,
and resetting the retries (as the retries was 0 when it was put into the dead letter job table).
|
| Modifier and Type | Method and Description |
|---|---|
HistoryJob |
ManagementServiceImpl.moveDeadLetterJobToHistoryJob(String jobId,
int retries) |
| Modifier and Type | Method and Description |
|---|---|
List<HistoryJob> |
HistoryJobService.findHistoryJobsByQueryCriteria(HistoryJobQueryImpl query) |
| Modifier and Type | Method and Description |
|---|---|
List<HistoryJob> |
HistoryJobQueryImpl.executeList(CommandContext commandContext) |
List<HistoryJob> |
HistoryJobServiceImpl.findHistoryJobsByQueryCriteria(HistoryJobQueryImpl query) |
| Modifier and Type | Method and Description |
|---|---|
HistoryJob |
MoveDeadLetterJobToHistoryJobCmd.execute(CommandContext commandContext) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
HistoryJobEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
HistoryJobEntityImpl
History Job entity.
|
| Modifier and Type | Method and Description |
|---|---|
List<HistoryJob> |
HistoryJobEntityManagerImpl.findHistoryJobsByQueryCriteria(HistoryJobQueryImpl jobQuery) |
List<HistoryJob> |
HistoryJobEntityManager.findHistoryJobsByQueryCriteria(HistoryJobQueryImpl jobQuery)
Executes a
HistoryJobQueryImpl and returns the matching HistoryJobEntity instances. |
| Modifier and Type | Method and Description |
|---|---|
List<HistoryJob> |
HistoryJobDataManager.findHistoryJobsByQueryCriteria(HistoryJobQueryImpl query) |
| Modifier and Type | Method and Description |
|---|---|
List<HistoryJob> |
MybatisHistoryJobDataManager.findHistoryJobsByQueryCriteria(HistoryJobQueryImpl jobQuery) |
| Modifier and Type | Method and Description |
|---|---|
void |
BpmnRestApiInterceptor.accessHistoryJobInfoById(HistoryJob job) |
HistoryJobResponse |
RestResponseFactory.createHistoryJobResponse(HistoryJob job) |
HistoryJobResponse |
RestResponseFactory.createHistoryJobResponse(HistoryJob job,
RestUrlBuilder urlBuilder) |
void |
BpmnRestApiInterceptor.deleteHistoryJob(HistoryJob historyJob) |
| Modifier and Type | Method and Description |
|---|---|
List<HistoryJobResponse> |
RestResponseFactory.createHistoryJobResponseList(List<HistoryJob> jobs) |
| Modifier and Type | Method and Description |
|---|---|
protected HistoryJob |
JobBaseResource.getHistoryJobById(String jobId) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
JobBaseResource.validateHistoryJob(HistoryJob job,
String jobId) |
Copyright © 2023 Flowable. All rights reserved.