Uses of Interface
org.camunda.bpm.engine.history.HistoricIdentityLinkLogQuery
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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 Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.Classes related to the
HistoryService
.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of HistoricIdentityLinkLogQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionHistoryService.createHistoricIdentityLinkLogQuery()
Creates a new programmatic query to search forhistoric identity links
. -
Uses of HistoricIdentityLinkLogQuery in org.camunda.bpm.engine.history
Modifier and TypeMethodDescriptionHistoricIdentityLinkLogQuery.assignerId
(String assignerId) Only select historic identity links which have the given assigner id.Only select historic identity links which have the date after the give date.HistoricIdentityLinkLogQuery.dateBefore
(Date dateBefore) Only select historic identity links which have the date before the give date.Only select historic identity links which have the given group id.HistoricIdentityLinkLogQuery.operationType
(String operationType) Only select historic identity links which have the given operation type (add/delete).HistoricIdentityLinkLogQuery.orderByAssignerId()
Order by assignerId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.orderByGroupId()
Order by groupId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.orderByOperationType()
Order by operationType (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.orderByProcessDefinitionId()
Order by processDefinitionId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.orderByProcessDefinitionKey()
Order by processDefinitionKey (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.orderByTaskId()
Order by taskId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.orderByTenantId()
Order by tenantId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.orderByTime()
Order by time (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.orderByType()
Order by type (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.orderByUserId()
Order by userId (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricIdentityLinkLogQuery.processDefinitionId
(String processDefinitionId) Only select historic identity links which have the given process definition id.HistoricIdentityLinkLogQuery.processDefinitionKey
(String processDefinitionKey) Only select historic identity links which have the given process definition key.Only select historic identity links which have the given task id.HistoricIdentityLinkLogQuery.tenantIdIn
(String... tenantId) Only select historic identity links which have the given tenant id.Only select historic identity links which have the given identity link type.Only select historic identity links which have the given user id.HistoricIdentityLinkLogQuery.withoutTenantId()
Only selects historic job log entries that have no tenant id. -
Uses of HistoricIdentityLinkLogQuery in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionHistoricIdentityLinkLogQueryImpl.assignerId
(String assignerId) HistoricIdentityLinkLogQueryImpl.dateBefore
(Date dateBefore) HistoricIdentityLinkLogQueryImpl.operationType
(String operationType) HistoricIdentityLinkLogQueryImpl.orderByAssignerId()
HistoricIdentityLinkLogQueryImpl.orderByGroupId()
HistoricIdentityLinkLogQueryImpl.orderByOperationType()
HistoricIdentityLinkLogQueryImpl.orderByProcessDefinitionId()
HistoricIdentityLinkLogQueryImpl.orderByProcessDefinitionKey()
HistoricIdentityLinkLogQueryImpl.orderByTaskId()
HistoricIdentityLinkLogQueryImpl.orderByTenantId()
HistoricIdentityLinkLogQueryImpl.orderByTime()
HistoricIdentityLinkLogQueryImpl.orderByType()
HistoricIdentityLinkLogQueryImpl.orderByUserId()
HistoricIdentityLinkLogQueryImpl.processDefinitionId
(String processDefinitionId) HistoricIdentityLinkLogQueryImpl.processDefinitionKey
(String processDefinitionKey) HistoricIdentityLinkLogQueryImpl.tenantIdIn
(String... tenantIds) HistoricIdentityLinkLogQueryImpl.withoutTenantId()
-
Uses of HistoricIdentityLinkLogQuery in org.camunda.bpm.engine.rest.dto.history
Modifier and TypeMethodDescriptionprotected HistoricIdentityLinkLogQuery
HistoricIdentityLinkLogQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
HistoricIdentityLinkLogQueryDto.applyFilters
(HistoricIdentityLinkLogQuery query) protected void
HistoricIdentityLinkLogQueryDto.applySortBy
(HistoricIdentityLinkLogQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine)