| 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 |
|---|---|
DeadLetterJobQuery |
CmmnManagementService.createDeadLetterJobQuery()
Returns a new DeadLetterJobQuery implementation, that can be used to query the dead letter jobs.
|
| Modifier and Type | Method and Description |
|---|---|
DeadLetterJobQuery |
CmmnManagementServiceImpl.createDeadLetterJobQuery() |
| Modifier and Type | Method and Description |
|---|---|
void |
CmmnRestApiInterceptor.accessDeadLetterJobInfoWithQuery(DeadLetterJobQuery jobQuery) |
| Modifier and Type | Method and Description |
|---|---|
DeadLetterJobQuery |
ManagementService.createDeadLetterJobQuery()
Returns a new DeadLetterJobQuery implementation, that can be used to dynamically query the dead letter jobs.
|
| Modifier and Type | Method and Description |
|---|---|
DeadLetterJobQuery |
ManagementServiceImpl.createDeadLetterJobQuery() |
| Modifier and Type | Method and Description |
|---|---|
DeadLetterJobQuery |
DeadLetterJobQuery.caseDefinitionId(String caseDefinitionId)
Only select jobs for the given case definition.
|
DeadLetterJobQuery |
DeadLetterJobQuery.caseInstanceId(String caseInstanceId)
Only select jobs for the given case instance.
|
DeadLetterJobQuery |
DeadLetterJobQuery.category(String category)
Only select jobs which exist for the given category
|
DeadLetterJobQuery |
DeadLetterJobQuery.categoryLike(String categoryLike)
Only select jobs like for the given category value
|
DeadLetterJobQuery |
DeadLetterJobQuery.correlationId(String correlationId)
Only select jobs for with the given correlationId.
|
DeadLetterJobQuery |
DeadLetterJobQuery.duedateHigherThan(Date date)
Only select jobs where the duedate is higher then the given date.
|
DeadLetterJobQuery |
DeadLetterJobQuery.duedateLowerThan(Date date)
Only select jobs where the duedate is lower than the given date.
|
DeadLetterJobQuery |
DeadLetterJobQuery.elementId(String elementId)
Only select jobs which exist for the given element id
|
DeadLetterJobQuery |
DeadLetterJobQuery.elementName(String elementName)
Only select jobs which exist for the given element name
|
DeadLetterJobQuery |
DeadLetterJobQuery.exceptionMessage(String exceptionMessage)
Only select jobs that failed due to an exception with the given message.
|
DeadLetterJobQuery |
DeadLetterJobQuery.executable()
Only select jobs which are executable, ie.
|
DeadLetterJobQuery |
DeadLetterJobQuery.executionId(String executionId)
Only select jobs which exist for the given execution
|
DeadLetterJobQuery |
DeadLetterJobQuery.externalWorkers()
Only select external worker jobs.
|
DeadLetterJobQuery |
DeadLetterJobQuery.handlerType(String handlerType)
Select jobs which have given job handler type
|
DeadLetterJobQuery |
DeadLetterJobQuery.jobId(String jobId)
Only select jobs with the given id
|
DeadLetterJobQuery |
DeadLetterJobQuery.jobTenantId(String tenantId)
Only select jobs that have the given tenant id.
|
DeadLetterJobQuery |
DeadLetterJobQuery.jobTenantIdLike(String tenantIdLike)
Only select jobs with a tenant id like the given one.
|
DeadLetterJobQuery |
DeadLetterJobQuery.jobWithoutTenantId()
Only select jobs that do not have a tenant id.
|
DeadLetterJobQuery |
DeadLetterJobQuery.messages()
Only select jobs that are messages.
|
DeadLetterJobQuery |
DeadLetterJobQuery.orderByExecutionId()
Order by execution id (needs to be followed by
Query.asc() or Query.desc()). |
DeadLetterJobQuery |
DeadLetterJobQuery.orderByJobCreateTime()
Order by create time (needs to be followed by
Query.asc() or Query.desc()). |
DeadLetterJobQuery |
DeadLetterJobQuery.orderByJobDuedate()
Order by duedate (needs to be followed by
Query.asc() or Query.desc()). |
DeadLetterJobQuery |
DeadLetterJobQuery.orderByJobId()
Order by job id (needs to be followed by
Query.asc() or Query.desc()). |
DeadLetterJobQuery |
DeadLetterJobQuery.orderByJobRetries()
Order by retries (needs to be followed by
Query.asc() or Query.desc()). |
DeadLetterJobQuery |
DeadLetterJobQuery.orderByProcessInstanceId()
Order by process instance id (needs to be followed by
Query.asc() or Query.desc()). |
DeadLetterJobQuery |
DeadLetterJobQuery.orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc()). |
DeadLetterJobQuery |
DeadLetterJobQuery.planItemInstanceId(String planItemInstanceId)
Only select jobs for the given plan item instance.
|
DeadLetterJobQuery |
DeadLetterJobQuery.processDefinitionId(String processDefinitionId)
Only select jobs which exist for the given process definition id
|
DeadLetterJobQuery |
DeadLetterJobQuery.processInstanceId(String processInstanceId)
Only select jobs which exist for the given process instance.
|
DeadLetterJobQuery |
DeadLetterJobQuery.scopeDefinitionId(String scopeDefinitionId)
Only select jobs for the given scope definition identifier.
|
DeadLetterJobQuery |
DeadLetterJobQuery.scopeId(String scopeId)
Only select jobs for the given scope identifier.
|
DeadLetterJobQuery |
DeadLetterJobQuery.scopeType(String scopeType)
Only select jobs for the given scope type.
|
DeadLetterJobQuery |
DeadLetterJobQuery.subScopeId(String subScopeId)
Only select jobs for the given sub scope identifier.
|
DeadLetterJobQuery |
DeadLetterJobQuery.timers()
Only select jobs that are timers.
|
DeadLetterJobQuery |
DeadLetterJobQuery.withException()
Only select jobs that failed due to an exception.
|
DeadLetterJobQuery |
DeadLetterJobQuery.withoutScopeType()
Only select jobs that do not have a scope type.
|
| Modifier and Type | Method and Description |
|---|---|
DeadLetterJobQuery |
JobService.createDeadLetterJobQuery() |
| Modifier and Type | Class and Description |
|---|---|
class |
DeadLetterJobQueryImpl |
| Modifier and Type | Method and Description |
|---|---|
DeadLetterJobQuery |
DeadLetterJobQueryImpl.caseDefinitionId(String caseDefinitionId) |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.caseInstanceId(String caseInstanceId) |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.correlationId(String correlationId) |
DeadLetterJobQuery |
JobServiceImpl.createDeadLetterJobQuery() |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.orderByExecutionId() |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.orderByJobCreateTime() |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.orderByJobDuedate() |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.orderByJobId() |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.orderByJobRetries() |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.orderByProcessInstanceId() |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.orderByTenantId() |
DeadLetterJobQuery |
DeadLetterJobQueryImpl.planItemInstanceId(String planItemInstanceId) |
| Modifier and Type | Method and Description |
|---|---|
void |
BpmnRestApiInterceptor.accessDeadLetterJobInfoWithQuery(DeadLetterJobQuery jobQuery) |
Copyright © 2023 Flowable. All rights reserved.