Package net.risesoft.service
Interface CustomIdentityService
-
- All Known Implementing Classes:
CustomIdentityServiceImpl
public interface CustomIdentityService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/30
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddParticipantUser(String tenantId, String userId, String processInstanceId)由于任务产生的时候,删除流程的参与人,避免待办和在办同时出现,此时任务完成还原词流程的参与人voiddeleteParticipantUser(String tenantId, String userId, String processInstanceId)任务产生的时候,删除流程的参与人,避免待办和在办同时出现,等任务完成的时候再还原词流程的参与人List<org.flowable.identitylink.api.IdentityLink>listIdentityLinksForTaskByTaskId(String taskId)获取任务的用户信息
-
-
-
Method Detail
-
addParticipantUser
void addParticipantUser(String tenantId, String userId, String processInstanceId)
由于任务产生的时候,删除流程的参与人,避免待办和在办同时出现,此时任务完成还原词流程的参与人- Parameters:
tenantId-userId-processInstanceId-
-
deleteParticipantUser
void deleteParticipantUser(String tenantId, String userId, String processInstanceId)
任务产生的时候,删除流程的参与人,避免待办和在办同时出现,等任务完成的时候再还原词流程的参与人- Parameters:
tenantId-userId-processInstanceId-
-
-