| Package | Description |
|---|---|
| org.flowable.cmmn.api | |
| org.flowable.cmmn.engine.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.external.job.rest.service.api | |
| org.flowable.external.job.rest.service.api.acquire | |
| org.flowable.job.api | |
| org.flowable.job.service.impl |
| Modifier and Type | Method and Description |
|---|---|
ExternalWorkerJobAcquireBuilder |
CmmnManagementService.createExternalWorkerJobAcquireBuilder()
Create an
ExternalWorkerJobAcquireBuilder that can be used to acquire jobs for an external worker. |
| Modifier and Type | Method and Description |
|---|---|
ExternalWorkerJobAcquireBuilder |
CmmnManagementServiceImpl.createExternalWorkerJobAcquireBuilder() |
| Modifier and Type | Method and Description |
|---|---|
ExternalWorkerJobAcquireBuilder |
ManagementService.createExternalWorkerJobAcquireBuilder()
Create an
ExternalWorkerJobAcquireBuilder that can be used to acquire jobs for an external worker. |
| Modifier and Type | Method and Description |
|---|---|
ExternalWorkerJobAcquireBuilder |
ManagementServiceImpl.createExternalWorkerJobAcquireBuilder() |
| Modifier and Type | Method and Description |
|---|---|
void |
ExternalWorkerJobRestApiInterceptor.accessAcquireExternalWorkerJobs(ExternalWorkerJobAcquireBuilder acquireBuilder,
AcquireExternalWorkerJobRequest request) |
| Modifier and Type | Method and Description |
|---|---|
protected ExternalWorkerJobAcquireBuilder |
ExternalWorkerAcquireJobResource.createExternalWorkerAcquireBuilder() |
| Modifier and Type | Method and Description |
|---|---|
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilder.forUserOrGroups(String userId,
Collection<String> groups)
Acquire only jobs where the given user or groups are authorized to execute.
|
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilder.onlyBpmn()
Acquire only jobs which are linked to a process instance.
|
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilder.onlyCmmn()
Acquire only jobs which are linked to a case instance.
|
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilder.scopeType(String scopeType)
Acquire only jobs which are linked to the given scope type.
|
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilder.tenantId(String tenantId)
Acquire only jobs which are within the given tenant.
|
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilder.topic(String topic,
Duration lockDuration)
The topic and lock duration for the requested jobs
|
| Modifier and Type | Class and Description |
|---|---|
class |
ExternalWorkerJobAcquireBuilderImpl |
| Modifier and Type | Method and Description |
|---|---|
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilderImpl.forUserOrGroups(String userId,
Collection<String> groups) |
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilderImpl.onlyBpmn() |
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilderImpl.onlyCmmn() |
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilderImpl.scopeType(String scopeType) |
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilderImpl.tenantId(String tenantId) |
ExternalWorkerJobAcquireBuilder |
ExternalWorkerJobAcquireBuilderImpl.topic(String topic,
Duration lockDuration) |
Copyright © 2023 Flowable. All rights reserved.