| Package | Description | 
|---|---|
| org.activiti.engine | 
 Public API of the Activiti engine. 
Typical usage of the API starts by the creation of a ProcessEngineConfiguration
    (typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a ProcessEngine, BPM and workflow operation 
    can be executed:RepositoryService:  Manages Deployments RuntimeService:  For starting and searching ProcessInstances TaskService:  Exposes operations to manage human (standalone) Tasks, 
    such as claiming, completing and assigning tasksIdentityService:  Used for managing Users, 
    Groups and the relations between themManagementService:  Exposes engine admin and maintenance operations,
    which have no relation to the runtime exection of business processesHistoryService:  Exposes information about ongoing and past process instances.FormService:  Access to form data and rendered forms for starting new process instances and completing tasks. | 
| org.activiti.engine.identity | 
 classes related to the  
IdentityService. | 
| Modifier and Type | Method and Description | 
|---|---|
UserQuery | 
IdentityService.createUserQuery()
Creates a  
UserQuery that allows to programmatically query the users. | 
| Modifier and Type | Method and Description | 
|---|---|
UserQuery | 
UserQuery.memberOfGroup(String groupId)
Only select  
Users that belong to the given group. | 
UserQuery | 
UserQuery.orderByUserEmail()
Order by user email  (needs to be followed by  
Query.asc() or Query.desc()). | 
UserQuery | 
UserQuery.orderByUserFirstName()
Order by user first name (needs to be followed by  
Query.asc() or Query.desc()). | 
UserQuery | 
UserQuery.orderByUserId()
Order by user id (needs to be followed by  
Query.asc() or Query.desc()). | 
UserQuery | 
UserQuery.orderByUserLastName()
Order by user last name (needs to be followed by  
Query.asc() or Query.desc()). | 
UserQuery | 
UserQuery.potentialStarter(String procDefId)
Only select  
UserS that are potential starter for the given process definition. | 
UserQuery | 
UserQuery.userEmail(String email)
Only those  
Users with the given email addres. | 
UserQuery | 
UserQuery.userEmailLike(String emailLike)
Only select  
Users where the email matches the given parameter. | 
UserQuery | 
UserQuery.userFirstName(String firstName)
Only select  
Users with the given firstName. | 
UserQuery | 
UserQuery.userFirstNameLike(String firstNameLike)
Only select  
Users where the first name matches the given parameter. | 
UserQuery | 
UserQuery.userFullNameLike(String fullNameLike)
Only select  
Users where the full name matches the given parameters. | 
UserQuery | 
UserQuery.userId(String id)
Only select  
Users with the given id/ | 
UserQuery | 
UserQuery.userLastName(String lastName)
Only select  
Users with the given lastName. | 
UserQuery | 
UserQuery.userLastNameLike(String lastNameLike)
Only select  
Users where the last name matches the given parameter. | 
Copyright © 2017 Flowable. All rights reserved.