Uses of Interface
org.flowable.engine.task.Comment
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 Comment in org.flowable.engine
Modifier and TypeMethodDescriptionTaskService.addComment
(String taskId, String processInstanceId, String message) Add a comment to a task and/or process instance.TaskService.addComment
(String taskId, String processInstanceId, String type, String message) Add a comment to a task and/or process instance with a custom type.TaskService.getComment
(String commentId) Returns an individual comment with the given id.Modifier and TypeMethodDescriptionTaskService.getCommentsByType
(String type) All comments of a given type.TaskService.getProcessInstanceComments
(String processInstanceId) The comments related to the given process instance.TaskService.getProcessInstanceComments
(String processInstanceId, String type) The comments related to the given process instance.TaskService.getTaskComments
(String taskId) The comments related to the given task.TaskService.getTaskComments
(String taskId, String type) The comments related to the given task of the given type.Modifier and TypeMethodDescriptionvoid
TaskService.saveComment
(Comment comment) Update a comment to a task and/or process instance. -
Uses of Comment in org.flowable.engine.compatibility
-
Uses of Comment in org.flowable.engine.impl
Modifier and TypeMethodDescriptionTaskServiceImpl.addComment
(String taskId, String processInstance, String message) TaskServiceImpl.addComment
(String taskId, String processInstance, String type, String message) TaskServiceImpl.getComment
(String commentId) Modifier and TypeMethodDescriptionTaskServiceImpl.getCommentsByType
(String type) TaskServiceImpl.getProcessInstanceComments
(String processInstanceId) TaskServiceImpl.getProcessInstanceComments
(String processInstanceId, String type) TaskServiceImpl.getTaskComments
(String taskId) TaskServiceImpl.getTaskComments
(String taskId, String type)