public interface UserQuery extends Query<UserQuery,User>
User| Modifier and Type | Method and Description | 
|---|---|
| UserQuery | memberOfGroup(String groupId)Only select  Users that belong to the given group. | 
| UserQuery | memberOfTenant(String tenantId)Only select  Users that belongs to the given tenant. | 
| UserQuery | orderByUserEmail()Order by user email  (needs to be followed by  Query.asc()orQuery.desc()). | 
| UserQuery | orderByUserFirstName()Order by user first name (needs to be followed by  Query.asc()orQuery.desc()). | 
| UserQuery | orderByUserId()Order by user id (needs to be followed by  Query.asc()orQuery.desc()). | 
| UserQuery | orderByUserLastName()Order by user last name (needs to be followed by  Query.asc()orQuery.desc()). | 
| UserQuery | potentialStarter(String procDefId)Only select  UserS that are potential starter for the given process definition. | 
| UserQuery | userEmail(String email)Only those  Users with the given email addres. | 
| UserQuery | userEmailLike(String emailLike)Only select  Users where the email matches the given parameter. | 
| UserQuery | userFirstName(String firstName)Only select  Users with the given firstName. | 
| UserQuery | userFirstNameLike(String firstNameLike)Only select  Users where the first name matches the given parameter. | 
| UserQuery | userId(String id)Only select  Users with the given id/ | 
| UserQuery | userIdIn(String... ids)Only select  Users with the given ids | 
| UserQuery | userLastName(String lastName)Only select  Users with the given lastName. | 
| UserQuery | userLastNameLike(String lastNameLike)Only select  Users where the last name matches the given parameter. | 
UserQuery userFirstNameLike(String firstNameLike)
Users where the first name matches the given parameter.
 The syntax is that of SQL, eg. %activivi%.UserQuery userLastNameLike(String lastNameLike)
Users where the last name matches the given parameter.
 The syntax is that of SQL, eg. %activivi%.UserQuery userEmailLike(String emailLike)
Users where the email matches the given parameter.
 The syntax is that of SQL, eg. %activivi%.UserQuery memberOfGroup(String groupId)
Users that belong to the given group.UserQuery potentialStarter(String procDefId)
UserS that are potential starter for the given process definition.UserQuery memberOfTenant(String tenantId)
Users that belongs to the given tenant.UserQuery orderByUserId()
Query.asc() or Query.desc()).UserQuery orderByUserFirstName()
Query.asc() or Query.desc()).UserQuery orderByUserLastName()
Query.asc() or Query.desc()).UserQuery orderByUserEmail()
Query.asc() or Query.desc()).Copyright © 2018. All rights reserved.