Class TenantIdProviderHistoricDecisionInstanceContext
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cfg.multitenancy.TenantIdProviderHistoricDecisionInstanceContext
-
public class TenantIdProviderHistoricDecisionInstanceContext extends Object
Provides information about a historic decision instance to aTenantIdProvider
implementation.- Since:
- 7.5
- Author:
- Kristin Polenz
-
-
Field Summary
Fields Modifier and Type Field Description protected DelegateCaseExecution
caseExecution
protected DecisionDefinition
decisionDefinition
protected DelegateExecution
execution
-
Constructor Summary
Constructors Constructor Description TenantIdProviderHistoricDecisionInstanceContext(DecisionDefinition decisionDefinition)
TenantIdProviderHistoricDecisionInstanceContext(DecisionDefinition decisionDefinition, DelegateCaseExecution caseExecution)
TenantIdProviderHistoricDecisionInstanceContext(DecisionDefinition decisionDefinition, DelegateExecution execution)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DelegateCaseExecution
getCaseExecution()
DecisionDefinition
getDecisionDefinition()
DelegateExecution
getExecution()
-
-
-
Field Detail
-
decisionDefinition
protected DecisionDefinition decisionDefinition
-
execution
protected DelegateExecution execution
-
caseExecution
protected DelegateCaseExecution caseExecution
-
-
Constructor Detail
-
TenantIdProviderHistoricDecisionInstanceContext
public TenantIdProviderHistoricDecisionInstanceContext(DecisionDefinition decisionDefinition)
-
TenantIdProviderHistoricDecisionInstanceContext
public TenantIdProviderHistoricDecisionInstanceContext(DecisionDefinition decisionDefinition, DelegateExecution execution)
-
TenantIdProviderHistoricDecisionInstanceContext
public TenantIdProviderHistoricDecisionInstanceContext(DecisionDefinition decisionDefinition, DelegateCaseExecution caseExecution)
-
-
Method Detail
-
getDecisionDefinition
public DecisionDefinition getDecisionDefinition()
- Returns:
- the decision definition of the historic decision instance which is being evaluated
-
getExecution
public DelegateExecution getExecution()
- Returns:
- the execution. This method returns the execution of the process instance which evaluated the decision definition.
-
getCaseExecution
public DelegateCaseExecution getCaseExecution()
- Returns:
- the case execution. This method returns the case execution of the CMMN case task which evaluated the decision definition.
-
-