Package org.flowable.idm.api
Interface UserBaseQuery<T extends UserBaseQuery<T,U>,U extends User>  
- All Superinterfaces:
- Query<T,- U> 
- All Known Subinterfaces:
- UserQuery
- All Known Implementing Classes:
- UserQueryImpl
Allows programmatic querying of 
User- Author:
- Joram Barrez, Filip Hrisafov
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.flowable.common.engine.api.query.QueryQuery.NullHandlingOnOrder
- 
Method SummaryModifier and TypeMethodDescriptionmemberOfGroup(String groupId) Only selectUsers that belong to the given group.memberOfGroups(List<String> groupIds) Only selectUsers that belong to the given groups.Order by user email (needs to be followed byQuery.asc()orQuery.desc()).Order by user first name (needs to be followed byQuery.asc()orQuery.desc()).Order by user id (needs to be followed byQuery.asc()orQuery.desc()).Order by user last name (needs to be followed byQuery.asc()orQuery.desc()).Only selectUsers that belong to the given tenant.userDisplayName(String displayName) Only selectUsers with the given displayName.userDisplayNameLike(String displayNameLike) Only selectUsers where the display name matches the given parameter.userDisplayNameLikeIgnoreCase(String displayNameLikeIgnoreCase) Only selectUsers where the display name matches the given parameter (ignoring case).Only thoseUsers with the given email address.userEmailLike(String emailLike) Only selectUsers where the email matches the given parameter.userFirstName(String firstName) Only selectUsers with the given firstName.userFirstNameLike(String firstNameLike) Only selectUsers where the first name matches the given parameter.userFirstNameLikeIgnoreCase(String firstNameLikeIgnoreCase) Only selectUsers where the first name matches the given parameter (ignoring case).userFullNameLike(String fullNameLike) Only selectUsers where the full name matches the given parameters.userFullNameLikeIgnoreCase(String fullNameLikeIgnoreCase) Only selectUsers where the full name matches the given parameters (ignoring case).Only selectUsers with the given id/Only selectUsers with the given id (ignoring case) /Only selectUsers with the given ids/userLastName(String lastName) Only selectUsers with the given lastName.userLastNameLike(String lastNameLike) Only selectUsers where the last name matches the given parameter.userLastNameLikeIgnoreCase(String lastNameLikeIgnoreCase) Only selectUsers where the last name matches the given parameter (ignoring case).
- 
Method Details- 
userIdOnly selectUsers with the given id/
- 
userIdsOnly selectUsers with the given ids/
- 
userIdIgnoreCaseOnly selectUsers with the given id (ignoring case) /
- 
userFirstNameOnly selectUsers with the given firstName.
- 
userFirstNameLikeOnly selectUsers where the first name matches the given parameter. The syntax is that of SQL, eg. %name%.
- 
userFirstNameLikeIgnoreCaseOnly selectUsers where the first name matches the given parameter (ignoring case). The syntax is that of SQL, eg. %name%.
- 
userLastNameOnly selectUsers with the given lastName.
- 
userLastNameLikeOnly selectUsers where the last name matches the given parameter. The syntax is that of SQL, eg. %name%.
- 
userLastNameLikeIgnoreCaseOnly selectUsers where the last name matches the given parameter (ignoring case). The syntax is that of SQL, eg. %name%.
- 
userFullNameLikeOnly selectUsers where the full name matches the given parameters. Both the first name and last name will be tried, ie in semi-sql: where firstName like xxx or lastname like xxx
- 
userFullNameLikeIgnoreCaseOnly selectUsers where the full name matches the given parameters (ignoring case). Both the first name and last name will be tried, ie in semi-sql: where firstName like xxx or lastname like xxx
- 
userDisplayNameOnly selectUsers with the given displayName.
- 
userDisplayNameLikeOnly selectUsers where the display name matches the given parameter. The syntax is that of SQL, eg. %name%.
- 
userDisplayNameLikeIgnoreCaseOnly selectUsers where the display name matches the given parameter (ignoring case). The syntax is that of SQL, eg. %name%.
- 
userEmailOnly thoseUsers with the given email address.
- 
userEmailLikeOnly selectUsers where the email matches the given parameter. The syntax is that of SQL, eg. %test%.
- 
memberOfGroupOnly selectUsers that belong to the given group.
- 
memberOfGroupsOnly selectUsers that belong to the given groups.
- 
tenantIdOnly selectUsers that belong to the given tenant.
- 
orderByUserIdT orderByUserId()Order by user id (needs to be followed byQuery.asc()orQuery.desc()).
- 
orderByUserFirstNameT orderByUserFirstName()Order by user first name (needs to be followed byQuery.asc()orQuery.desc()).
- 
orderByUserLastNameT orderByUserLastName()Order by user last name (needs to be followed byQuery.asc()orQuery.desc()).
- 
orderByUserEmailT orderByUserEmail()Order by user email (needs to be followed byQuery.asc()orQuery.desc()).
 
-