Package org.kie.api.task
Interface UserGroupCallback
- 
 public interface UserGroupCallback
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanexistsGroup(String groupId)Resolves existence of group id.booleanexistsUser(String userId)Resolves existence of user id.List<String>getGroupsForUser(String userId)Returns list of group ids for specified user id.
 
- 
- 
- 
Method Detail- 
existsUserboolean existsUser(String userId) Resolves existence of user id.- Parameters:
- userId- the user id assigned to the task
- Returns:
- true if userId exists, false otherwise.
 
 - 
existsGroupboolean existsGroup(String groupId) Resolves existence of group id.- Parameters:
- groupId- the group id assigned to the task
- Returns:
- true if groupId exists, false otherwise.
 
 
- 
 
-