Uses of Interface
org.flowable.engine.task.Comment
Packages that use 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
Methods in org.flowable.engine that return CommentModifier 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.Methods in org.flowable.engine that return types with arguments of type CommentModifier 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.Methods in org.flowable.engine with parameters of type CommentModifier and TypeMethodDescriptionvoid
TaskService.saveComment
(Comment comment) Update a comment to a task and/or process instance. -
Uses of Comment in org.flowable.engine.compatibility
Methods in org.flowable.engine.compatibility that return Comment -
Uses of Comment in org.flowable.engine.impl
Methods in org.flowable.engine.impl that return CommentModifier and TypeMethodDescriptionTaskServiceImpl.addComment
(String taskId, String processInstance, String message) TaskServiceImpl.addComment
(String taskId, String processInstance, String type, String message) TaskServiceImpl.getComment
(String commentId) Methods in org.flowable.engine.impl that return types with arguments of type CommentModifier 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) Methods in org.flowable.engine.impl with parameters of type Comment -
Uses of Comment in org.flowable.engine.impl.cmd
Methods in org.flowable.engine.impl.cmd that return CommentModifier and TypeMethodDescriptionAddCommentCmd.execute
(CommandContext commandContext) GetCommentCmd.execute
(CommandContext commandContext) Methods in org.flowable.engine.impl.cmd that return types with arguments of type CommentModifier and TypeMethodDescriptionGetProcessInstanceCommentsCmd.execute
(CommandContext commandContext) GetTaskCommentsByTypeCmd.execute
(CommandContext commandContext) GetTaskCommentsCmd.execute
(CommandContext commandContext) GetTypeCommentsCmd.execute
(CommandContext commandContext) -
Uses of Comment in org.flowable.engine.impl.persistence.entity
Subinterfaces of Comment in org.flowable.engine.impl.persistence.entityClasses in org.flowable.engine.impl.persistence.entity that implement CommentMethods in org.flowable.engine.impl.persistence.entity that return CommentModifier and TypeMethodDescriptionCommentEntityManager.findComment
(String commentId) CommentEntityManagerImpl.findComment
(String commentId) Methods in org.flowable.engine.impl.persistence.entity that return types with arguments of type CommentModifier and TypeMethodDescriptionCommentEntityManager.findCommentsByProcessInstanceId
(String processInstanceId) CommentEntityManager.findCommentsByProcessInstanceId
(String processInstanceId, String type) CommentEntityManagerImpl.findCommentsByProcessInstanceId
(String processInstanceId) CommentEntityManagerImpl.findCommentsByProcessInstanceId
(String processInstanceId, String type) CommentEntityManager.findCommentsByTaskId
(String taskId) CommentEntityManagerImpl.findCommentsByTaskId
(String taskId) CommentEntityManager.findCommentsByTaskIdAndType
(String taskId, String type) CommentEntityManagerImpl.findCommentsByTaskIdAndType
(String taskId, String type) CommentEntityManager.findCommentsByType
(String type) CommentEntityManagerImpl.findCommentsByType
(String type) -
Uses of Comment in org.flowable.engine.impl.persistence.entity.data
Methods in org.flowable.engine.impl.persistence.entity.data that return CommentMethods in org.flowable.engine.impl.persistence.entity.data that return types with arguments of type CommentModifier and TypeMethodDescriptionCommentDataManager.findCommentsByProcessInstanceId
(String processInstanceId) CommentDataManager.findCommentsByProcessInstanceId
(String processInstanceId, String type) CommentDataManager.findCommentsByTaskId
(String taskId) CommentDataManager.findCommentsByTaskIdAndType
(String taskId, String type) CommentDataManager.findCommentsByType
(String type) -
Uses of Comment in org.flowable.engine.impl.persistence.entity.data.impl
Methods in org.flowable.engine.impl.persistence.entity.data.impl that return CommentMethods in org.flowable.engine.impl.persistence.entity.data.impl that return types with arguments of type CommentModifier and TypeMethodDescriptionMybatisCommentDataManager.findCommentsByProcessInstanceId
(String processInstanceId) MybatisCommentDataManager.findCommentsByProcessInstanceId
(String processInstanceId, String type) MybatisCommentDataManager.findCommentsByTaskId
(String taskId) MybatisCommentDataManager.findCommentsByTaskIdAndType
(String taskId, String type) MybatisCommentDataManager.findCommentsByType
(String type) -
Uses of Comment in org.flowable.rest.service.api
Methods in org.flowable.rest.service.api with parameters of type CommentModifier and TypeMethodDescriptionRestResponseFactory.createRestComment
(Comment comment) RestResponseFactory.createRestComment
(Comment comment, RestUrlBuilder urlBuilder) void
BpmnRestApiInterceptor.deleteTaskComment
(Task task, Comment comment) Method parameters in org.flowable.rest.service.api with type arguments of type CommentModifier and TypeMethodDescriptionRestResponseFactory.createRestCommentList
(List<Comment> comments)