public interface CaseReactivationBuilder
CmmnHistoryService.createCaseReactivationBuilder(String).| Modifier and Type | Method and Description |
|---|---|
CaseInstance |
reactivate()
After having entered all necessary information for the reactivation, this method actually triggers the reactivation and returns the reactivated case
instance from the runtime.
|
CaseReactivationBuilder |
transientVariable(String name,
Object value)
Adds a transient variable to the case before triggering the reactivation event which is available only during that first transaction.
|
CaseReactivationBuilder |
transientVariables(Map<String,Object> variables)
Adds a map of transient variables to the case before triggering the reactivation event which are available only during that first transaction.
|
CaseReactivationBuilder |
variable(String name,
Object value)
Adds a variable to be added to the case before triggering the reactivation event.
|
CaseReactivationBuilder |
variables(Map<String,Object> variables)
Adds the map of variables to the case before triggering the reactivation event.
|
CaseReactivationBuilder variable(String name, Object value)
name - the name of the variable to be addedvalue - the value of the variable to be addedCaseReactivationBuilder variables(Map<String,Object> variables)
variables - the map of variables to be added to the caseCaseReactivationBuilder transientVariable(String name, Object value)
name - the name of the variable to be addedvalue - the value of the variable to be addedCaseReactivationBuilder transientVariables(Map<String,Object> variables)
variables - the map of variables to be added to the caseCaseInstance reactivate()
Copyright © 2022 Flowable. All rights reserved.