| Package | Description |
|---|---|
| org.activiti.engine |
Public API of the Flowable version 5 engine.
It is highly recommended that the version 6 engine be used instead of the version 5 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 org.activiti5.engine.runtime.ProcessInstances.TaskService: Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasks.IdentityService: Used for managing Users,
org.flowable.idm.api.identity.Groups and the relations between them.ManagementService: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection 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.activiti.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
| org.flowable.engine |
Public API of the Flowable 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 tasks.IdentityService: Used for managing users, groups and the relations between them.ManagementService: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection 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.flowable.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
| org.flowable.idm.api | |
| org.flowable.idm.engine.impl | |
| org.flowable.idm.engine.impl.cmd | |
| org.flowable.idm.engine.impl.persistence.entity | |
| org.flowable.idm.rest.service.api | |
| org.flowable.ldap | |
| org.flowable.ldap.impl | |
| org.flowable.rest.service.api | |
| org.flowable.ui.idm.service.keycloak |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
IdentityService.createGroupQuery()
Creates a
GroupQuery that allows for programmatically querying the groups. |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
IdentityServiceImpl.createGroupQuery() |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
IdentityService.createGroupQuery()
Creates a
GroupQuery that allows to programmatically query the groups. |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
IdentityServiceImpl.createGroupQuery() |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
IdmIdentityService.createGroupQuery()
Creates a
GroupQuery that allows to programmatically query the groups. |
GroupQuery |
GroupQuery.groupId(String groupId)
Only select
Groups with the given id. |
GroupQuery |
GroupQuery.groupIds(List<String> groupIds)
Only select
Groups with the given ids. |
GroupQuery |
GroupQuery.groupMember(String groupMemberUserId)
Only selects
Groups where the given user is a member of. |
GroupQuery |
GroupQuery.groupMembers(List<String> groupMemberUserIds)
Only selects
Groups where the given users are a member of. |
GroupQuery |
GroupQuery.groupName(String groupName)
Only select
Groups with the given name. |
GroupQuery |
GroupQuery.groupNameLike(String groupNameLike)
Only select
Groups where the name matches the given parameter. |
GroupQuery |
GroupQuery.groupNameLikeIgnoreCase(String groupNameLikeIgnoreCase)
Only select
Groups where the name matches the given parameter (ignoring case). |
GroupQuery |
GroupQuery.groupType(String groupType)
Only select
Groups which have the given type. |
GroupQuery |
GroupQuery.orderByGroupId()
Order by group id (needs to be followed by
Query.asc() or Query.desc()). |
GroupQuery |
GroupQuery.orderByGroupName()
Order by group name (needs to be followed by
Query.asc() or Query.desc()). |
GroupQuery |
GroupQuery.orderByGroupType()
Order by group type (needs to be followed by
Query.asc() or Query.desc()). |
| Modifier and Type | Class and Description |
|---|---|
class |
GroupQueryImpl |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
IdmIdentityServiceImpl.createGroupQuery() |
GroupQuery |
GroupQueryImpl.groupId(String id) |
GroupQuery |
GroupQueryImpl.groupIds(List<String> ids) |
GroupQuery |
GroupQueryImpl.groupMember(String userId) |
GroupQuery |
GroupQueryImpl.groupMembers(List<String> userIds) |
GroupQuery |
GroupQueryImpl.groupName(String name) |
GroupQuery |
GroupQueryImpl.groupNameLike(String nameLike) |
GroupQuery |
GroupQueryImpl.groupNameLikeIgnoreCase(String nameLikeIgnoreCase) |
GroupQuery |
GroupQueryImpl.groupType(String type) |
GroupQuery |
GroupQueryImpl.orderByGroupId() |
GroupQuery |
GroupQueryImpl.orderByGroupName() |
GroupQuery |
GroupQueryImpl.orderByGroupType() |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
CreateGroupQueryCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
GroupEntityManagerImpl.createNewGroupQuery() |
GroupQuery |
GroupEntityManager.createNewGroupQuery() |
| Modifier and Type | Method and Description |
|---|---|
void |
IdmRestApiInterceptor.accessGroupInfoWithQuery(GroupQuery groupQuery) |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
LDAPIdentityServiceImpl.createGroupQuery() |
| Modifier and Type | Class and Description |
|---|---|
class |
LDAPGroupQueryImpl |
| Modifier and Type | Method and Description |
|---|---|
void |
BpmnRestApiInterceptor.accessGroupInfoWithQuery(GroupQuery groupQuery) |
| Modifier and Type | Class and Description |
|---|---|
class |
KeycloakGroupQueryImpl |
| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
KeycloakIdentityServiceImpl.createGroupQuery() |
Copyright © 2023 Flowable. All rights reserved.