|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use HistoricDecisionInstanceQuery | |
|---|---|
| org.camunda.bpm.engine | Public API of the camunda BPM 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 DeploymentsRuntimeService:
For starting and searching ProcessInstancesTaskService:
Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasksIdentityService:
Used for managing Users,
Groups 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. |
| org.camunda.bpm.engine.history | Classes related to the HistoryService. |
| org.camunda.bpm.engine.impl | API implementation classes, which shouldn't directly be used by end-users. |
| Uses of HistoricDecisionInstanceQuery in org.camunda.bpm.engine |
|---|
| Methods in org.camunda.bpm.engine that return HistoricDecisionInstanceQuery | |
|---|---|
HistoricDecisionInstanceQuery |
HistoryService.createHistoricDecisionInstanceQuery()
Creates a new programmatic query to search for HistoricDecisionInstances. |
| Uses of HistoricDecisionInstanceQuery in org.camunda.bpm.engine.history |
|---|
| Methods in org.camunda.bpm.engine.history that return HistoricDecisionInstanceQuery | |
|---|---|
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.activityIdIn(String... activityIds)
Only select historic decision instances that are evaluated inside a process or a case which have one of the activity ids. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.activityInstanceIdIn(String... activityInstanceIds)
Only select historic decision instances that are evaluated inside a process or a case which have one of the activity instance ids. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.caseDefinitionId(String caseDefinitionId)
Only select historic decision instances that are evaluated inside a case with the given case definition id. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.caseDefinitionKey(String caseDefinitionKey)
Only select historic decision instances that are evaluated inside a case with the given case definition key. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.caseInstanceId(String caseInstanceId)
Only select historic decision instances that are evaluated inside a case with the given case instance id. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.decisionDefinitionId(String decisionDefinitionId)
Only select historic decision instances for the given decision definition |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.decisionDefinitionKey(String decisionDefinitionKey)
Only select historic decision instances with the given key of the decision definition. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.decisionDefinitionName(String decisionDefinitionName)
Only select historic decision instances with the given name of the decision definition. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.decisionInstanceId(String decisionInstanceId)
Only select historic decision instances with the given decision instance id. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.decisionInstanceIdIn(String... decisionInstanceIdIn)
Only select historic decision instances whose id is in the given list of ids. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.disableBinaryFetching()
Disable fetching of byte array input and output values. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.disableCustomObjectDeserialization()
Disable deserialization of input and output values that are custom objects. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.evaluatedAfter(Date date)
Only select historic decision instances that were evaluated after the given date. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.evaluatedBefore(Date date)
Only select historic decision instances that were evaluated before the given date. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.includeInputs()
Enable fetching HistoricDecisionInputInstance of evaluated decision. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.includeOutputs()
Enable fetching HistoricDecisionOutputInstance of evaluated decision. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.orderByEvaluationTime()
Order by the time when the decisions was evaluated (needs to be followed by Query.asc() or Query.desc()). |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.processDefinitionId(String processDefinitionId)
Only select historic decision instances that are evaluated inside a process with the given process definition id. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.processDefinitionKey(String processDefinitionKey)
Only select historic decision instances that are evaluated inside a process with the given process definition key. |
HistoricDecisionInstanceQuery |
HistoricDecisionInstanceQuery.processInstanceId(String processInstanceId)
Only select historic decision instances that are evaluated inside a process with the given process instance id. |
| Uses of HistoricDecisionInstanceQuery in org.camunda.bpm.engine.impl |
|---|
| Classes in org.camunda.bpm.engine.impl that implement HistoricDecisionInstanceQuery | |
|---|---|
class |
HistoricDecisionInstanceQueryImpl
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||