Uses of Class
org.camunda.bpm.engine.task.DelegationState
-
Packages that use DelegationState Package Description org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.rest.dto.converter org.camunda.bpm.engine.rest.hal.task org.camunda.bpm.engine.task Classes related to theTaskService
. -
-
Uses of DelegationState in org.camunda.bpm.engine.impl
Fields in org.camunda.bpm.engine.impl declared as DelegationState Modifier and Type Field Description protected DelegationState
TaskQueryImpl. delegationState
Methods in org.camunda.bpm.engine.impl that return DelegationState Modifier and Type Method Description DelegationState
TaskQueryImpl. getDelegationState()
Methods in org.camunda.bpm.engine.impl with parameters of type DelegationState Modifier and Type Method Description TaskQuery
TaskQueryImpl. taskDelegationState(DelegationState delegationState)
-
Uses of DelegationState in org.camunda.bpm.engine.impl.persistence.entity
Fields in org.camunda.bpm.engine.impl.persistence.entity declared as DelegationState Modifier and Type Field Description protected DelegationState
TaskEntity. delegationState
Methods in org.camunda.bpm.engine.impl.persistence.entity that return DelegationState Modifier and Type Method Description DelegationState
TaskEntity. getDelegationState()
Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type DelegationState Modifier and Type Method Description void
TaskEntity. setDelegationState(DelegationState delegationState)
void
TaskEntity. setDelegationStateWithoutCascade(DelegationState delegationState)
-
Uses of DelegationState in org.camunda.bpm.engine.rest.dto.converter
Methods in org.camunda.bpm.engine.rest.dto.converter that return DelegationState Modifier and Type Method Description DelegationState
DelegationStateConverter. convertQueryParameterToType(String value)
-
Uses of DelegationState in org.camunda.bpm.engine.rest.hal.task
Methods in org.camunda.bpm.engine.rest.hal.task that return DelegationState Modifier and Type Method Description DelegationState
HalTask. getDelegationState()
-
Uses of DelegationState in org.camunda.bpm.engine.task
Methods in org.camunda.bpm.engine.task that return DelegationState Modifier and Type Method Description DelegationState
Task. getDelegationState()
The currentDelegationState
for this task.static DelegationState
DelegationState. valueOf(String name)
Returns the enum constant of this type with the specified name.static DelegationState[]
DelegationState. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.camunda.bpm.engine.task with parameters of type DelegationState Modifier and Type Method Description void
Task. setDelegationState(DelegationState delegationState)
The currentDelegationState
for this task.TaskQuery
TaskQuery. taskDelegationState(DelegationState delegationState)
Only select tasks with the givenDelegationState
.
-