Uses of Interface
org.flowable.task.api.Task
Packages that use Task
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.Classes related to the
FormService
.-
Uses of Task in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api that return TaskMethods in org.flowable.cmmn.api that return types with arguments of type TaskModifier and TypeMethodDescriptionCmmnTaskService.getSubTasks
(String parentTaskId) The list of subtasks for this parent taskMethods in org.flowable.cmmn.api with parameters of type TaskMethod parameters in org.flowable.cmmn.api with type arguments of type Task -
Uses of Task in org.flowable.engine
Methods in org.flowable.engine that return TaskModifier and TypeMethodDescriptionTaskService.newTask()
Creates a new task that is not related to any process instance.create a new task with a user defined task idMethods in org.flowable.engine that return types with arguments of type TaskModifier and TypeMethodDescriptionTaskService.getSubTasks
(String parentTaskId) The list of subtasks for this parent taskMethods in org.flowable.engine with parameters of type TaskModifier and TypeMethodDescriptionvoid
Saves the given task to the persistent data store.Method parameters in org.flowable.engine with type arguments of type TaskModifier and TypeMethodDescriptionvoid
TaskService.bulkSaveTasks
(Collection<Task> taskList) Saves the given tasks to the persistent data store. -
Uses of Task in org.flowable.engine.form
Methods in org.flowable.engine.form that return Task -
Uses of Task in org.flowable.task.api
Methods in org.flowable.task.api that return TaskModifier and TypeMethodDescriptionTaskBuilder.create()
Creates task instance according values set in the builderMethod parameters in org.flowable.task.api with type arguments of type TaskModifier and TypeMethodDescriptionvoid
TaskQueryInterceptor.afterTaskQueryExecute
(TaskQuery taskQuery, List<Task> tasks)