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 aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managingUsers,Groups 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 UserQueryIdentityService. createUserQuery()Creates aUserQuerythat 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 UserQueryUserQuery. memberOfGroup(java.lang.String groupId)Only selectUsers that belong to the given group.UserQueryUserQuery. memberOfTenant(java.lang.String tenantId)Only selectUsers that belongs to the given tenant.UserQueryUserQuery. orderByUserEmail()Order by user email (needs to be followed byQuery.asc()orQuery.desc()).UserQueryUserQuery. orderByUserFirstName()Order by user first name (needs to be followed byQuery.asc()orQuery.desc()).UserQueryUserQuery. orderByUserId()Order by user id (needs to be followed byQuery.asc()orQuery.desc()).UserQueryUserQuery. orderByUserLastName()Order by user last name (needs to be followed byQuery.asc()orQuery.desc()).UserQueryUserQuery. potentialStarter(java.lang.String procDefId)Only selectUserS that are potential starter for the given process definition.UserQueryUserQuery. userEmail(java.lang.String email)Only thoseUsers with the given email addres.UserQueryUserQuery. userEmailLike(java.lang.String emailLike)Only selectUsers where the email matches the given parameter.UserQueryUserQuery. userFirstName(java.lang.String firstName)Only selectUsers with the given firstName.UserQueryUserQuery. userFirstNameLike(java.lang.String firstNameLike)Only selectUsers where the first name matches the given parameter.UserQueryUserQuery. userId(java.lang.String id)Only selectUsers with the given id/UserQueryUserQuery. userIdIn(java.lang.String... ids)Only selectUsers with the given idsUserQueryUserQuery. userLastName(java.lang.String lastName)Only selectUsers with the given lastName.UserQueryUserQuery. userLastNameLike(java.lang.String lastNameLike)Only selectUsers 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 classUserQueryImplMethods in org.camunda.bpm.engine.impl that return UserQuery Modifier and Type Method Description UserQueryIdentityServiceImpl. createUserQuery()UserQueryUserQueryImpl. memberOfGroup(java.lang.String groupId)UserQueryUserQueryImpl. memberOfTenant(java.lang.String tenantId)UserQueryUserQueryImpl. orderByUserEmail()UserQueryUserQueryImpl. orderByUserFirstName()UserQueryUserQueryImpl. orderByUserId()UserQueryUserQueryImpl. orderByUserLastName()UserQueryUserQueryImpl. potentialStarter(java.lang.String procDefId)UserQueryUserQueryImpl. userEmail(java.lang.String email)UserQueryUserQueryImpl. userEmailLike(java.lang.String emailLike)UserQueryUserQueryImpl. userFirstName(java.lang.String firstName)UserQueryUserQueryImpl. userFirstNameLike(java.lang.String firstNameLike)UserQueryUserQueryImpl. userId(java.lang.String id)UserQueryUserQueryImpl. userIdIn(java.lang.String... ids)UserQueryUserQueryImpl. userLastName(java.lang.String lastName)UserQueryUserQueryImpl. userLastNameLike(java.lang.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 UserQueryCreateUserQueryCmd. 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 UserQueryReadOnlyIdentityProvider. createUserQuery()UserQueryReadOnlyIdentityProvider. 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 classDbUserQueryImplMethods in org.camunda.bpm.engine.impl.identity.db that return UserQuery Modifier and Type Method Description UserQueryDbReadOnlyIdentityServiceProvider. 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 UserQueryUserQueryDto. createNewQuery(ProcessEngine engine)Methods in org.camunda.bpm.engine.rest.dto.identity with parameters of type UserQuery Modifier and Type Method Description protected voidUserQueryDto. applyFilters(UserQuery query)protected voidUserQueryDto. applySortBy(UserQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.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 java.util.List<User>UserRestServiceImpl. executePaginatedQuery(UserQuery query, java.lang.Integer firstResult, java.lang.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 classLdapUserQueryImplMethods in org.camunda.bpm.identity.impl.ldap that return UserQuery Modifier and Type Method Description UserQueryLdapIdentityProviderSession. createUserQuery()UserQueryLdapUserQueryImpl. desc()
-