Uses of Interface
org.flowable.task.api.TaskBuilder
Packages that use TaskBuilder
Package
Description
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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 Deployment
s.RuntimeService
: For starting and searching ProcessInstance
s.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.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of TaskBuilder in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api that return TaskBuilderModifier and TypeMethodDescriptionCmmnTaskService.createTaskBuilder()
Create a builder for the task -
Uses of TaskBuilder in org.flowable.cmmn.engine.impl
Classes in org.flowable.cmmn.engine.impl that implement TaskBuilderMethods in org.flowable.cmmn.engine.impl that return TaskBuilder -
Uses of TaskBuilder in org.flowable.cmmn.engine.impl.cmd
Fields in org.flowable.cmmn.engine.impl.cmd declared as TaskBuilderConstructors in org.flowable.cmmn.engine.impl.cmd with parameters of type TaskBuilder -
Uses of TaskBuilder in org.flowable.engine
Methods in org.flowable.engine that return TaskBuilder -
Uses of TaskBuilder in org.flowable.engine.impl
Classes in org.flowable.engine.impl that implement TaskBuilderMethods in org.flowable.engine.impl that return TaskBuilder -
Uses of TaskBuilder in org.flowable.engine.impl.cmd
Fields in org.flowable.engine.impl.cmd declared as TaskBuilderConstructors in org.flowable.engine.impl.cmd with parameters of type TaskBuilder -
Uses of TaskBuilder in org.flowable.task.api
Methods in org.flowable.task.api that return TaskBuilderModifier and TypeMethodDescriptionThe userId of the person to which this task is delegated.Change the category of the task.TaskBuilder.description
(String description) Free text description of the task.Change due date of the task.Change the form key of the taskDB id of the task.TaskBuilder.identityLinks
(Set<? extends IdentityLinkInfo> identityLinks) add identity links to the taskName or title of the task.The userId of the person that is responsible for this task.TaskBuilder.parentTaskId
(String parentTaskId) the parent task for which this task is a subtaskTaskBuilder.priority
(int priority) Indication of how important/urgent this task isadd task scopeIdAdd scope typeTaskBuilder.taskDefinitionId
(String taskDefinitionId) task definition id to create task fromTaskBuilder.taskDefinitionKey
(String taskDefinitionKey) task definition key to create task fromChange the tenantId of the task -
Uses of TaskBuilder in org.flowable.task.service
Methods in org.flowable.task.service with parameters of type TaskBuilder -
Uses of TaskBuilder in org.flowable.task.service.impl
Classes in org.flowable.task.service.impl that implement TaskBuilderMethods in org.flowable.task.service.impl that return TaskBuilderModifier and TypeMethodDescriptionBaseTaskBuilderImpl.description
(String description) BaseTaskBuilderImpl.identityLinks
(Set<? extends IdentityLinkInfo> identityLinks) BaseTaskBuilderImpl.parentTaskId
(String parentTaskId) BaseTaskBuilderImpl.priority
(int priority) BaseTaskBuilderImpl.taskDefinitionId
(String taskDefinitionId) BaseTaskBuilderImpl.taskDefinitionKey
(String taskDefinitionKey) Methods in org.flowable.task.service.impl with parameters of type TaskBuilder -
Uses of TaskBuilder in org.flowable.task.service.impl.persistence.entity
Methods in org.flowable.task.service.impl.persistence.entity with parameters of type TaskBuilderModifier and TypeMethodDescriptionTaskEntityManager.createTask
(TaskBuilder taskBuilder) CreatesTaskEntity
according toTaskInfo
templateTaskEntityManagerImpl.createTask
(TaskBuilder taskBuilder)