Uses of Interface
org.camunda.bpm.engine.identity.UserQuery
-
Packages that use UserQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService
: 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.camunda.bpm.engine.identity classes related to theIdentityService
.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cmd org.camunda.bpm.engine.impl.identity org.camunda.bpm.engine.impl.identity.db org.camunda.bpm.engine.rest.dto.identity org.camunda.bpm.engine.rest.impl org.camunda.bpm.identity.impl.ldap -
-
Uses of UserQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return UserQuery Modifier and Type Method Description UserQuery
IdentityService. createUserQuery()
Creates aUserQuery
that allows to programmatically query the users. -
Uses of UserQuery in org.camunda.bpm.engine.identity
Methods in org.camunda.bpm.engine.identity that return UserQuery Modifier and Type Method Description UserQuery
UserQuery. memberOfGroup(String groupId)
Only selectUser
s that belong to the given group.UserQuery
UserQuery. memberOfTenant(String tenantId)
Only selectUser
s that belongs to the given tenant.UserQuery
UserQuery. orderByUserEmail()
Order by user email (needs to be followed byQuery.asc()
orQuery.desc()
).UserQuery
UserQuery. orderByUserFirstName()
Order by user first name (needs to be followed byQuery.asc()
orQuery.desc()
).UserQuery
UserQuery. orderByUserId()
Order by user id (needs to be followed byQuery.asc()
orQuery.desc()
).UserQuery
UserQuery. orderByUserLastName()
Order by user last name (needs to be followed byQuery.asc()
orQuery.desc()
).UserQuery
UserQuery. potentialStarter(String procDefId)
Only selectUser
S that are potential starter for the given process definition.UserQuery
UserQuery. userEmail(String email)
Only thoseUser
s with the given email addres.UserQuery
UserQuery. userEmailLike(String emailLike)
Only selectUser
s where the email matches the given parameter.UserQuery
UserQuery. userFirstName(String firstName)
Only selectUser
s with the given firstName.UserQuery
UserQuery. userFirstNameLike(String firstNameLike)
Only selectUser
s where the first name matches the given parameter.UserQuery
UserQuery. userId(String id)
Only selectUser
s with the given id/UserQuery
UserQuery. userIdIn(String... ids)
Only selectUser
s with the given idsUserQuery
UserQuery. userLastName(String lastName)
Only selectUser
s with the given lastName.UserQuery
UserQuery. userLastNameLike(String lastNameLike)
Only selectUser
s where the last name matches the given parameter. -
Uses of UserQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement UserQuery Modifier and Type Class Description class
UserQueryImpl
Methods in org.camunda.bpm.engine.impl that return UserQuery Modifier and Type Method Description UserQuery
IdentityServiceImpl. createUserQuery()
UserQuery
UserQueryImpl. memberOfGroup(String groupId)
UserQuery
UserQueryImpl. memberOfTenant(String tenantId)
UserQuery
UserQueryImpl. orderByUserEmail()
UserQuery
UserQueryImpl. orderByUserFirstName()
UserQuery
UserQueryImpl. orderByUserId()
UserQuery
UserQueryImpl. orderByUserLastName()
UserQuery
UserQueryImpl. potentialStarter(String procDefId)
UserQuery
UserQueryImpl. userEmail(String email)
UserQuery
UserQueryImpl. userEmailLike(String emailLike)
UserQuery
UserQueryImpl. userFirstName(String firstName)
UserQuery
UserQueryImpl. userFirstNameLike(String firstNameLike)
UserQuery
UserQueryImpl. userId(String id)
UserQuery
UserQueryImpl. userIdIn(String... ids)
UserQuery
UserQueryImpl. userLastName(String lastName)
UserQuery
UserQueryImpl. userLastNameLike(String lastNameLike)
-
Uses of UserQuery in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return UserQuery Modifier and Type Method Description UserQuery
CreateUserQueryCmd. execute(CommandContext commandContext)
-
Uses of UserQuery in org.camunda.bpm.engine.impl.identity
Methods in org.camunda.bpm.engine.impl.identity that return UserQuery Modifier and Type Method Description UserQuery
ReadOnlyIdentityProvider. createUserQuery()
UserQuery
ReadOnlyIdentityProvider. createUserQuery(CommandContext commandContext)
-
Uses of UserQuery in org.camunda.bpm.engine.impl.identity.db
Classes in org.camunda.bpm.engine.impl.identity.db that implement UserQuery Modifier and Type Class Description class
DbUserQueryImpl
Methods in org.camunda.bpm.engine.impl.identity.db that return UserQuery Modifier and Type Method Description UserQuery
DbReadOnlyIdentityServiceProvider. createUserQuery()
-
Uses of UserQuery in org.camunda.bpm.engine.rest.dto.identity
Methods in org.camunda.bpm.engine.rest.dto.identity that return UserQuery Modifier and Type Method Description protected UserQuery
UserQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.identity with parameters of type UserQuery Modifier and Type Method Description protected void
UserQueryDto. applyFilters(UserQuery query)
protected void
UserQueryDto. applySortBy(UserQuery query, String sortBy, Map<String,Object> parameters, ProcessEngine engine)
-
Uses of UserQuery in org.camunda.bpm.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl with parameters of type UserQuery Modifier and Type Method Description protected List<User>
UserRestServiceImpl. executePaginatedQuery(UserQuery query, Integer firstResult, Integer maxResults)
-
Uses of UserQuery in org.camunda.bpm.identity.impl.ldap
Classes in org.camunda.bpm.identity.impl.ldap that implement UserQuery Modifier and Type Class Description class
LdapUserQueryImpl
Methods in org.camunda.bpm.identity.impl.ldap that return UserQuery Modifier and Type Method Description UserQuery
LdapIdentityProviderSession. createUserQuery()
UserQuery
LdapUserQueryImpl. desc()
-