| Package | Description |
|---|---|
| org.flowable.cmmn.api | |
| org.flowable.cmmn.engine.impl | |
| org.flowable.cmmn.rest.service.api | |
| 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.api | |
| org.flowable.job.service | |
| org.flowable.job.service.impl | |
| org.flowable.rest.service.api |
| Modifier and Type | Method and Description |
|---|---|
HistoryJobQuery |
CmmnManagementService.createHistoryJobQuery()
Returns a new HistoryJobQuery implementation, that can be used to dynamically query the history jobs.
|
| Modifier and Type | Method and Description |
|---|---|
HistoryJobQuery |
CmmnManagementServiceImpl.createHistoryJobQuery() |
| Modifier and Type | Method and Description |
|---|---|
void |
CmmnRestApiInterceptor.accessHistoryJobInfoWithQuery(HistoryJobQuery jobQuery) |
| Modifier and Type | Method and Description |
|---|---|
HistoryJobQuery |
ManagementService.createHistoryJobQuery()
Returns a new HistoryJobQuery implementation, that can be used to dynamically query the history jobs.
|
| Modifier and Type | Method and Description |
|---|---|
HistoryJobQuery |
ManagementServiceImpl.createHistoryJobQuery() |
| Modifier and Type | Method and Description |
|---|---|
HistoryJobQuery |
HistoryJobQuery.exceptionMessage(String exceptionMessage)
Only select jobs that failed due to an exception with the given message.
|
HistoryJobQuery |
HistoryJobQuery.handlerType(String handlerType)
Select jobs which have given job handler type
|
HistoryJobQuery |
HistoryJobQuery.jobId(String jobId)
Only select jobs with the given id
|
HistoryJobQuery |
HistoryJobQuery.jobTenantId(String tenantId)
Only select jobs that have the given tenant id.
|
HistoryJobQuery |
HistoryJobQuery.jobTenantIdLike(String tenantIdLike)
Only select jobs with a tenant id like the given one.
|
HistoryJobQuery |
HistoryJobQuery.jobWithoutTenantId()
Only select jobs that do not have a tenant id.
|
HistoryJobQuery |
HistoryJobQuery.locked()
Only return jobs that are locked (i.e.
|
HistoryJobQuery |
HistoryJobQuery.lockOwner(String lockOwner)
Only return jobs with the given lock owner.
|
HistoryJobQuery |
HistoryJobQuery.orderByJobId()
Order by job id (needs to be followed by
Query.asc() or Query.desc()). |
HistoryJobQuery |
HistoryJobQuery.orderByJobRetries()
Order by retries (needs to be followed by
Query.asc() or Query.desc()). |
HistoryJobQuery |
HistoryJobQuery.orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc()). |
HistoryJobQuery |
HistoryJobQuery.scopeType(String scopeType)
Only select jobs with the given scope type.
|
HistoryJobQuery |
HistoryJobQuery.unlocked()
Only return jobs that are not locked.
|
HistoryJobQuery |
HistoryJobQuery.withException()
Only select jobs that failed due to an exception.
|
HistoryJobQuery |
HistoryJobQuery.withoutScopeType()
Only return jobs that do not have a scope type.
|
| Modifier and Type | Method and Description |
|---|---|
HistoryJobQuery |
JobService.createHistoryJobQuery() |
| Modifier and Type | Class and Description |
|---|---|
class |
HistoryJobQueryImpl |
| Modifier and Type | Method and Description |
|---|---|
void |
BpmnRestApiInterceptor.accessHistoryJobInfoWithQuery(HistoryJobQuery jobQuery) |
Copyright © 2023 Flowable. All rights reserved.