Uses of Interface
org.flowable.task.service.impl.persistence.entity.TaskEntity
Packages that use TaskEntity
Package
Description
-
Uses of TaskEntity in org.flowable.task.service
Methods in org.flowable.task.service that return TaskEntityModifier and TypeMethodDescriptionTaskService.createTask()TaskService.createTask(TaskBuilder taskBuilder) TaskPostProcessor.enrich(TaskEntity taskEntityToEnrich) Methods in org.flowable.task.service that return types with arguments of type TaskEntityModifier and TypeMethodDescriptionTaskService.findTasksByExecutionId(String executionId) TaskService.findTasksByProcessInstanceId(String processInstanceId) TaskService.findTasksBySubScopeIdScopeType(String subScopeId, String scopeType) Methods in org.flowable.task.service with parameters of type TaskEntityModifier and TypeMethodDescriptionvoidTaskService.changeTaskAssignee(TaskEntity taskEntity, String userId) voidTaskService.changeTaskOwner(TaskEntity taskEntity, String ownerId) HistoricTaskService.createHistoricTask(TaskEntity taskEntity) voidTaskService.deleteTask(TaskEntity task, boolean fireEvents) TaskPostProcessor.enrich(TaskEntity taskEntityToEnrich) voidTaskService.insertTask(TaskEntity taskEntity, boolean fireCreateEvent) HistoricTaskService.recordTaskCreated(TaskEntity task) HistoricTaskService.recordTaskEnd(TaskEntity task, String deleteReason, Date endTime) HistoricTaskService.recordTaskInfoChange(TaskEntity taskEntity, Date changeTime, AbstractEngineConfiguration engineConfiguration) InternalTaskVariableScopeResolver.resolveParentVariableScope(TaskEntity task) voidTaskService.updateTask(TaskEntity taskEntity, boolean fireUpdateEvent) -
Uses of TaskEntity in org.flowable.task.service.history
Methods in org.flowable.task.service.history with parameters of type TaskEntityModifier and TypeMethodDescriptionvoidInternalHistoryTaskManager.recordTaskCreated(TaskEntity taskEntity) Record task created.voidInternalHistoryTaskManager.recordTaskInfoChange(TaskEntity taskEntity, Date changeTime) Record task name change, if audit history is enabled. -
Uses of TaskEntity in org.flowable.task.service.impl
Methods in org.flowable.task.service.impl that return TaskEntityModifier and TypeMethodDescriptionTaskServiceImpl.createTask()TaskServiceImpl.createTask(TaskBuilder taskBuilder) DefaultTaskPostProcessor.enrich(TaskEntity taskEntity) Methods in org.flowable.task.service.impl that return types with arguments of type TaskEntityModifier and TypeMethodDescriptionTaskServiceImpl.findTasksByExecutionId(String executionId) TaskServiceImpl.findTasksByProcessInstanceId(String processInstanceId) TaskServiceImpl.findTasksBySubScopeIdScopeType(String subScopeId, String scopeType) Methods in org.flowable.task.service.impl with parameters of type TaskEntityModifier and TypeMethodDescriptionvoidTaskServiceImpl.changeTaskAssignee(TaskEntity taskEntity, String userId) voidTaskServiceImpl.changeTaskOwner(TaskEntity taskEntity, String ownerId) HistoricTaskServiceImpl.createHistoricTask(TaskEntity taskEntity) voidTaskServiceImpl.deleteTask(TaskEntity task, boolean fireEvents) voidTaskQueryImpl.enhanceCachedValue(TaskEntity task) DefaultTaskPostProcessor.enrich(TaskEntity taskEntity) voidTaskServiceImpl.insertTask(TaskEntity taskEntity, boolean fireCreateEvent) HistoricTaskServiceImpl.recordTaskCreated(TaskEntity task) HistoricTaskServiceImpl.recordTaskEnd(TaskEntity task, String deleteReason, Date endTime) HistoricTaskServiceImpl.recordTaskInfoChange(TaskEntity taskEntity, Date changeTime, AbstractEngineConfiguration engineConfiguration) voidTaskServiceImpl.updateTask(TaskEntity taskEntity, boolean fireUpdateEvent) -
Uses of TaskEntity in org.flowable.task.service.impl.persistence.entity
Classes in org.flowable.task.service.impl.persistence.entity that implement TaskEntityMethods in org.flowable.task.service.impl.persistence.entity that return TaskEntityModifier and TypeMethodDescriptionTaskEntityManagerImpl.create()TaskEntityManager.createTask(TaskBuilder taskBuilder) CreatesTaskEntityaccording toTaskInfotemplateTaskEntityManagerImpl.createTask(TaskBuilder taskBuilder) TaskEntityManagerImpl.update(TaskEntity taskEntity, boolean fireUpdateEvents) Methods in org.flowable.task.service.impl.persistence.entity that return types with arguments of type TaskEntityModifier and TypeMethodDescriptionTaskEntityManager.findTasksByExecutionId(String executionId) TaskEntityManagerImpl.findTasksByExecutionId(String executionId) TaskEntityManager.findTasksByProcessInstanceId(String processInstanceId) TaskEntityManagerImpl.findTasksByProcessInstanceId(String processInstanceId) TaskEntityManager.findTasksByScopeIdAndScopeType(String scopeId, String scopeType) TaskEntityManagerImpl.findTasksByScopeIdAndScopeType(String scopeId, String scopeType) TaskEntityManager.findTasksBySubScopeIdAndScopeType(String subScopeId, String scopeType) TaskEntityManagerImpl.findTasksBySubScopeIdAndScopeType(String subScopeId, String scopeType) Methods in org.flowable.task.service.impl.persistence.entity with parameters of type TaskEntityModifier and TypeMethodDescriptionvoidTaskEntityManager.changeTaskAssignee(TaskEntity taskEntity, String assignee) voidTaskEntityManagerImpl.changeTaskAssignee(TaskEntity taskEntity, String assignee) voidTaskEntityManager.changeTaskOwner(TaskEntity taskEntity, String owner) voidTaskEntityManagerImpl.changeTaskOwner(TaskEntity taskEntity, String owner) HistoricTaskInstanceEntityManager.create(TaskEntity task) HistoricTaskInstanceEntityManagerImpl.create(TaskEntity task) protected ObjectTaskEntityManagerImpl.getOriginalState(TaskEntity task, String stateKey) voidTaskEntityManagerImpl.insert(TaskEntity taskEntity, boolean fireCreatedEvent) protected voidTaskEntityManagerImpl.logAssigneeChanged(TaskEntity taskEntity, String previousAssignee, String newAssignee) protected voidTaskEntityManagerImpl.logDueDateChanged(TaskEntity taskEntity, Date previousDueDate, Date newDueDate) protected voidTaskEntityManagerImpl.logNameChanged(TaskEntity taskEntity, String previousName, String newName) protected voidTaskEntityManagerImpl.logOwnerChanged(TaskEntity taskEntity, String previousOwner, String newOwner) protected voidTaskEntityManagerImpl.logPriorityChanged(TaskEntity taskEntity, Integer previousPriority, int newPriority) protected voidTaskEntityManagerImpl.logTaskUpdateEvents(TaskEntity task) TaskEntityManagerImpl.update(TaskEntity taskEntity, boolean fireUpdateEvents) protected booleanTaskEntityManagerImpl.wasPersisted(TaskEntity task) Constructors in org.flowable.task.service.impl.persistence.entity with parameters of type TaskEntity -
Uses of TaskEntity in org.flowable.task.service.impl.persistence.entity.data
Methods in org.flowable.task.service.impl.persistence.entity.data that return types with arguments of type TaskEntityModifier and TypeMethodDescriptionTaskDataManager.findTasksByExecutionId(String executionId) TaskDataManager.findTasksByProcessInstanceId(String processInstanceId) TaskDataManager.findTasksByScopeIdAndScopeType(String scopeId, String scopeType) TaskDataManager.findTasksBySubScopeIdAndScopeType(String subScopeId, String scopeType) Methods in org.flowable.task.service.impl.persistence.entity.data with parameters of type TaskEntity -
Uses of TaskEntity in org.flowable.task.service.impl.persistence.entity.data.impl
Fields in org.flowable.task.service.impl.persistence.entity.data.impl with type parameters of type TaskEntityModifier and TypeFieldDescriptionprotected CachedEntityMatcher<TaskEntity> MybatisTaskDataManager.tasksByExecutionIdMatcherprotected CachedEntityMatcher<TaskEntity> MybatisTaskDataManager.tasksByProcessInstanceIdMatcherprotected CachedEntityMatcher<TaskEntity> MybatisTaskDataManager.tasksByScopeIdAndScopeTypeMatcherprotected CachedEntityMatcher<TaskEntity> MybatisTaskDataManager.tasksBySubScopeIdAndScopeTypeMatcherMethods in org.flowable.task.service.impl.persistence.entity.data.impl that return TaskEntityMethods in org.flowable.task.service.impl.persistence.entity.data.impl that return types with arguments of type TaskEntityModifier and TypeMethodDescriptionMybatisTaskDataManager.findTasksByExecutionId(String executionId) MybatisTaskDataManager.findTasksByProcessInstanceId(String processInstanceId) MybatisTaskDataManager.findTasksByScopeIdAndScopeType(String scopeId, String scopeType) MybatisTaskDataManager.findTasksBySubScopeIdAndScopeType(String subScopeId, String scopeType) Class<? extends TaskEntity> MybatisTaskDataManager.getManagedEntityClass()Methods in org.flowable.task.service.impl.persistence.entity.data.impl with parameters of type TaskEntity -
Uses of TaskEntity in org.flowable.task.service.impl.persistence.entity.data.impl.cachematcher
Methods in org.flowable.task.service.impl.persistence.entity.data.impl.cachematcher with parameters of type TaskEntityModifier and TypeMethodDescriptionbooleanTasksByExecutionIdMatcher.isRetained(TaskEntity taskEntity, Object parameter) booleanTasksByProcessInstanceIdMatcher.isRetained(TaskEntity taskEntity, Object parameter) booleanTasksByScopeIdAndScopeTypeMatcher.isRetained(TaskEntity taskEntity, Object parameter) booleanTasksBySubScopeIdAndScopeTypeMatcher.isRetained(TaskEntity taskEntity, Object parameter) -
Uses of TaskEntity in org.flowable.task.service.impl.util
Methods in org.flowable.task.service.impl.util with parameters of type TaskEntityModifier and TypeMethodDescriptionstatic booleanCountingTaskUtil.isTaskRelatedEntityCountEnabled(TaskEntity taskEntity, TaskServiceConfiguration taskServiceConfiguration)