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.engine
Methods 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.identity
Methods in org.camunda.bpm.engine.identity that return GroupQuery Modifier and Type Method Description GroupQueryGroupQuery. groupId(String groupId)Only selectGroups with the given id.GroupQueryGroupQuery. groupIdIn(String... ids)Only selectGroups with the given idsGroupQueryGroupQuery. groupMember(String groupMemberUserId)Only selectsGroups where the given user is a member of.GroupQueryGroupQuery. groupName(String groupName)Only selectGroups with the given name.GroupQueryGroupQuery. groupNameLike(String groupNameLike)Only selectGroups where the name matches the given parameter.GroupQueryGroupQuery. groupType(String groupType)Only selectGroups which have the given type.GroupQueryGroupQuery. memberOfTenant(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(String procDefId)Only selectGroupS that are potential starter for the given process definition. -
Uses of GroupQuery in org.camunda.bpm.engine.impl
Classes 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(String id)GroupQueryGroupQueryImpl. groupIdIn(String... ids)GroupQueryGroupQueryImpl. groupMember(String userId)GroupQueryGroupQueryImpl. groupName(String name)GroupQueryGroupQueryImpl. groupNameLike(String nameLike)GroupQueryGroupQueryImpl. groupType(String type)GroupQueryGroupQueryImpl. memberOfTenant(String tenantId)GroupQueryGroupQueryImpl. orderByGroupId()GroupQueryGroupQueryImpl. orderByGroupName()GroupQueryGroupQueryImpl. orderByGroupType()GroupQueryGroupQueryImpl. potentialStarter(String procDefId) -
Uses of GroupQuery in org.camunda.bpm.engine.impl.cmd
Methods 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.identity
Methods 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.db
Classes 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.identity
Methods 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, String sortBy, Map<String,Object> parameters, ProcessEngine engine) -
Uses of GroupQuery in org.camunda.bpm.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl with parameters of type GroupQuery Modifier and Type Method Description protected List<Group>GroupRestServiceImpl. executePaginatedQuery(GroupQuery query, Integer firstResult, Integer maxResults) -
Uses of GroupQuery in org.camunda.bpm.identity.impl.ldap
Classes 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)
-