-
- All Implemented Interfaces:
-
io.holunda.camunda.taskpool.api.business.WithCorrelations,io.holunda.camunda.taskpool.api.task.TaskIdentity,io.holunda.camunda.taskpool.api.task.WithPayload,io.holunda.camunda.taskpool.api.task.WithTaskId
public interface TaskIdentityWithPayloadAndCorrelations implements TaskIdentity, WithPayload, WithCorrelations
Task identity which can be enriched with payload and correlations.
-
-
Method Summary
Modifier and Type Method Description abstract BooleangetEnriched()Flag, indicating if the enrichment has been performed. abstract UnitsetEnriched(Boolean enriched)Flag, indicating if the enrichment has been performed. abstract StringgetTaskDefinitionKey()Task definition key. abstract SourceReferencegetSourceReference()Task source reference. abstract StringgetId()Task id. abstract VariableMapgetPayload()Payload. abstract StringgetBusinessKey()Business key. abstract VariableMapgetCorrelations()-
-
Method Detail
-
getEnriched
abstract Boolean getEnriched()
Flag, indicating if the enrichment has been performed. The payload is only then taken into account.
-
setEnriched
abstract Unit setEnriched(Boolean enriched)
Flag, indicating if the enrichment has been performed. The payload is only then taken into account.
-
getTaskDefinitionKey
abstract String getTaskDefinitionKey()
Task definition key.
-
getSourceReference
abstract SourceReference getSourceReference()
Task source reference.
-
getPayload
abstract VariableMap getPayload()
Payload.
-
getBusinessKey
abstract String getBusinessKey()
Business key.
-
getCorrelations
abstract VariableMap getCorrelations()
-
-
-
-