Uses of Interface
org.camunda.bpm.engine.identity.GroupQuery
- 
Packages that use GroupQuery 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 GroupQuery in org.camunda.bpm.engineMethods in org.camunda.bpm.engine that return GroupQuery Modifier and Type Method Description GroupQueryIdentityService. createGroupQuery()Creates aGroupQuerythats allows to programmatically query the groups.
- 
Uses of GroupQuery in org.camunda.bpm.engine.identityMethods in org.camunda.bpm.engine.identity that return GroupQuery Modifier and Type Method Description GroupQueryGroupQuery. groupId(java.lang.String groupId)Only selectGroups with the given id.GroupQueryGroupQuery. groupIdIn(java.lang.String... ids)Only selectGroups with the given idsGroupQueryGroupQuery. groupMember(java.lang.String groupMemberUserId)Only selectsGroups where the given user is a member of.GroupQueryGroupQuery. groupName(java.lang.String groupName)Only selectGroups with the given name.GroupQueryGroupQuery. groupNameLike(java.lang.String groupNameLike)Only selectGroups where the name matches the given parameter.GroupQueryGroupQuery. groupType(java.lang.String groupType)Only selectGroups which have the given type.GroupQueryGroupQuery. memberOfTenant(java.lang.String tenantId)Only selectGroups that belongs to the given tenant.GroupQueryGroupQuery. orderByGroupId()Order by group id (needs to be followed byQuery.asc()orQuery.desc()).GroupQueryGroupQuery. orderByGroupName()Order by group name (needs to be followed byQuery.asc()orQuery.desc()).GroupQueryGroupQuery. orderByGroupType()Order by group type (needs to be followed byQuery.asc()orQuery.desc()).GroupQueryGroupQuery. potentialStarter(java.lang.String procDefId)Only selectGroupS that are potential starter for the given process definition.
- 
Uses of GroupQuery in org.camunda.bpm.engine.implClasses in org.camunda.bpm.engine.impl that implement GroupQuery Modifier and Type Class Description classGroupQueryImplMethods in org.camunda.bpm.engine.impl that return GroupQuery Modifier and Type Method Description GroupQueryIdentityServiceImpl. createGroupQuery()GroupQueryGroupQueryImpl. groupId(java.lang.String id)GroupQueryGroupQueryImpl. groupIdIn(java.lang.String... ids)GroupQueryGroupQueryImpl. groupMember(java.lang.String userId)GroupQueryGroupQueryImpl. groupName(java.lang.String name)GroupQueryGroupQueryImpl. groupNameLike(java.lang.String nameLike)GroupQueryGroupQueryImpl. groupType(java.lang.String type)GroupQueryGroupQueryImpl. memberOfTenant(java.lang.String tenantId)GroupQueryGroupQueryImpl. orderByGroupId()GroupQueryGroupQueryImpl. orderByGroupName()GroupQueryGroupQueryImpl. orderByGroupType()GroupQueryGroupQueryImpl. potentialStarter(java.lang.String procDefId)
- 
Uses of GroupQuery in org.camunda.bpm.engine.impl.cmdMethods in org.camunda.bpm.engine.impl.cmd that return GroupQuery Modifier and Type Method Description GroupQueryCreateGroupQueryCmd. execute(CommandContext commandContext)
- 
Uses of GroupQuery in org.camunda.bpm.engine.impl.identityMethods in org.camunda.bpm.engine.impl.identity that return GroupQuery Modifier and Type Method Description GroupQueryReadOnlyIdentityProvider. createGroupQuery()GroupQueryReadOnlyIdentityProvider. createGroupQuery(CommandContext commandContext)
- 
Uses of GroupQuery in org.camunda.bpm.engine.impl.identity.dbClasses in org.camunda.bpm.engine.impl.identity.db that implement GroupQuery Modifier and Type Class Description classDbGroupQueryImplMethods in org.camunda.bpm.engine.impl.identity.db that return GroupQuery Modifier and Type Method Description GroupQueryDbReadOnlyIdentityServiceProvider. createGroupQuery()GroupQueryDbReadOnlyIdentityServiceProvider. createGroupQuery(CommandContext commandContext)
- 
Uses of GroupQuery in org.camunda.bpm.engine.rest.dto.identityMethods in org.camunda.bpm.engine.rest.dto.identity that return GroupQuery Modifier and Type Method Description protected GroupQueryGroupQueryDto. createNewQuery(ProcessEngine engine)Methods in org.camunda.bpm.engine.rest.dto.identity with parameters of type GroupQuery Modifier and Type Method Description protected voidGroupQueryDto. applyFilters(GroupQuery query)protected voidGroupQueryDto. applySortBy(GroupQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine)
- 
Uses of GroupQuery in org.camunda.bpm.engine.rest.implMethods in org.camunda.bpm.engine.rest.impl with parameters of type GroupQuery Modifier and Type Method Description protected java.util.List<Group>GroupRestServiceImpl. executePaginatedQuery(GroupQuery query, java.lang.Integer firstResult, java.lang.Integer maxResults)
- 
Uses of GroupQuery in org.camunda.bpm.identity.impl.ldapClasses in org.camunda.bpm.identity.impl.ldap that implement GroupQuery Modifier and Type Class Description classLdapGroupQueryMethods in org.camunda.bpm.identity.impl.ldap that return GroupQuery Modifier and Type Method Description GroupQueryLdapIdentityProviderSession. createGroupQuery()GroupQueryLdapIdentityProviderSession. createGroupQuery(CommandContext commandContext)
 
-