Uses of Interface
org.flowable.task.api.TaskInfo
Packages that use TaskInfo
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 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.-
Uses of TaskInfo in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api with parameters of type TaskInfoModifier and TypeMethodDescriptionCmmnHistoryService.createHistoricTaskLogEntryBuilder(TaskInfo task) Create new task log entry builder to the log task event -
Uses of TaskInfo in org.flowable.engine
Methods in org.flowable.engine with parameters of type TaskInfoModifier and TypeMethodDescriptionHistoryService.createHistoricTaskLogEntryBuilder(TaskInfo task) Create new task log entry builder to the log task event -
Uses of TaskInfo in org.flowable.task.api
Classes in org.flowable.task.api with type parameters of type TaskInfoModifier and TypeInterfaceDescriptioninterfaceTaskInfoQuery<T extends TaskInfoQuery<?,?>, V extends TaskInfo> Interface containing shared methods between theTaskQueryand theHistoricTaskInstanceQuery.Subinterfaces of TaskInfo in org.flowable.task.apiFields in org.flowable.task.api with type parameters of type TaskInfoModifier and TypeFieldDescriptionprotected TaskInfoQuery<? extends TaskInfoQuery<?, ?>, ? extends TaskInfo> TaskInfoQueryWrapper.taskInfoQueryMethods in org.flowable.task.api that return types with arguments of type TaskInfoModifier and TypeMethodDescriptionTaskInfoQuery<? extends TaskInfoQuery<?, ?>, ? extends TaskInfo> TaskInfoQueryWrapper.getTaskInfoQuery()Method parameters in org.flowable.task.api with type arguments of type TaskInfoModifier and TypeMethodDescriptionvoidTaskInfoQueryWrapper.setTaskInfoQuery(TaskInfoQuery<? extends TaskInfoQuery<?, ?>, ? extends TaskInfo> taskInfoQuery) Constructor parameters in org.flowable.task.api with type arguments of type TaskInfoModifierConstructorDescriptionTaskInfoQueryWrapper(TaskInfoQuery<? extends TaskInfoQuery<?, ?>, ? extends TaskInfo> taskInfoQuery) -
Uses of TaskInfo in org.flowable.task.api.history
Subinterfaces of TaskInfo in org.flowable.task.api.historyModifier and TypeInterfaceDescriptioninterfaceRepresents a historic task instance (waiting, finished or deleted) that is stored permanent for statistics, audit and other business intelligence purposes.