Package | Description |
---|---|
org.openapitools.client.api | |
org.openapitools.client.model |
Modifier and Type | Method and Description |
---|---|
VariableValueDto |
ProcessInstanceApi.getProcessInstanceVariable(String id,
String varName,
Boolean deserializeValue)
Retrieves a variable of a given process instance by id.
|
VariableValueDto |
TaskLocalVariableApi.getTaskLocalVariable(String id,
String varName,
Boolean deserializeValue)
Retrieves a variable from the context of a given task by id.
|
VariableValueDto |
TaskVariableApi.getTaskVariable(String id,
String varName,
Boolean deserializeValue)
Retrieves a variable from the context of a given task.
|
Modifier and Type | Method and Description |
---|---|
Map<String,VariableValueDto> |
TaskApi.complete(String id,
CompleteTaskDto completeTaskDto)
Completes a task and updates process variables.
|
ApiResponse<Map<String,VariableValueDto>> |
TaskApi.completeWithHttpInfo(String id,
CompleteTaskDto completeTaskDto)
Completes a task and updates process variables.
|
Map<String,VariableValueDto> |
TaskApi.getFormVariables(String id,
String variableNames,
Boolean deserializeValues)
Retrieves the form variables for a task.
|
ApiResponse<Map<String,VariableValueDto>> |
TaskApi.getFormVariablesWithHttpInfo(String id,
String variableNames,
Boolean deserializeValues)
Retrieves the form variables for a task.
|
Map<String,VariableValueDto> |
ProcessInstanceApi.getProcessInstanceVariables(String id,
Boolean deserializeValue)
Retrieves all variables of a given process instance by id.
|
ApiResponse<Map<String,VariableValueDto>> |
ProcessInstanceApi.getProcessInstanceVariablesWithHttpInfo(String id,
Boolean deserializeValue)
Retrieves all variables of a given process instance by id.
|
ApiResponse<VariableValueDto> |
ProcessInstanceApi.getProcessInstanceVariableWithHttpInfo(String id,
String varName,
Boolean deserializeValue)
Retrieves a variable of a given process instance by id.
|
Map<String,VariableValueDto> |
ProcessDefinitionApi.getStartFormVariables(String id,
String variableNames,
Boolean deserializeValues)
Get Start Form Variables
Retrieves the start form variables for a process definition (only if they are defined via the [Generated Task Form](https://docs.camunda.org/manual/7.14/user-guide/task-forms/#generated-task-forms) approach).
|
Map<String,VariableValueDto> |
ProcessDefinitionApi.getStartFormVariablesByKey(String key,
String variableNames,
Boolean deserializeValues)
Get Start Form Variables
Retrieves the start form variables for the latest process definition which belongs to no tenant (only if they are defined via the [Generated Task Form](https://docs.camunda.org/manual/7.14/user-guide/task-forms/#generated-task-forms) approach).
|
Map<String,VariableValueDto> |
ProcessDefinitionApi.getStartFormVariablesByKeyAndTenantId(String key,
String tenantId,
String variableNames,
Boolean deserializeValues)
Get Start Form Variables
Retrieves the start form variables for the latest process definition for a tenant (only if they are defined via the [Generated Task Form](https://docs.camunda.org/manual/7.14/user-guide/task-forms/#generated-task-forms) approach).
|
ApiResponse<Map<String,VariableValueDto>> |
ProcessDefinitionApi.getStartFormVariablesByKeyAndTenantIdWithHttpInfo(String key,
String tenantId,
String variableNames,
Boolean deserializeValues)
Get Start Form Variables
Retrieves the start form variables for the latest process definition for a tenant (only if they are defined via the [Generated Task Form](https://docs.camunda.org/manual/7.14/user-guide/task-forms/#generated-task-forms) approach).
|
ApiResponse<Map<String,VariableValueDto>> |
ProcessDefinitionApi.getStartFormVariablesByKeyWithHttpInfo(String key,
String variableNames,
Boolean deserializeValues)
Get Start Form Variables
Retrieves the start form variables for the latest process definition which belongs to no tenant (only if they are defined via the [Generated Task Form](https://docs.camunda.org/manual/7.14/user-guide/task-forms/#generated-task-forms) approach).
|
ApiResponse<Map<String,VariableValueDto>> |
ProcessDefinitionApi.getStartFormVariablesWithHttpInfo(String id,
String variableNames,
Boolean deserializeValues)
Get Start Form Variables
Retrieves the start form variables for a process definition (only if they are defined via the [Generated Task Form](https://docs.camunda.org/manual/7.14/user-guide/task-forms/#generated-task-forms) approach).
|
Map<String,VariableValueDto> |
TaskLocalVariableApi.getTaskLocalVariables(String id,
Boolean deserializeValues)
Retrieves all variables of a given task by id.
|
ApiResponse<Map<String,VariableValueDto>> |
TaskLocalVariableApi.getTaskLocalVariablesWithHttpInfo(String id,
Boolean deserializeValues)
Retrieves all variables of a given task by id.
|
ApiResponse<VariableValueDto> |
TaskLocalVariableApi.getTaskLocalVariableWithHttpInfo(String id,
String varName,
Boolean deserializeValue)
Retrieves a variable from the context of a given task by id.
|
Map<String,VariableValueDto> |
TaskVariableApi.getTaskVariables(String id,
Boolean deserializeValue)
Retrieves all variables visible from the task.
|
ApiResponse<Map<String,VariableValueDto>> |
TaskVariableApi.getTaskVariablesWithHttpInfo(String id,
Boolean deserializeValue)
Retrieves all variables visible from the task.
|
ApiResponse<VariableValueDto> |
TaskVariableApi.getTaskVariableWithHttpInfo(String id,
String varName,
Boolean deserializeValue)
Retrieves a variable from the context of a given task.
|
Map<String,VariableValueDto> |
TaskApi.submit(String id,
CompleteTaskDto completeTaskDto)
Completes a task and updates process variables using a form submit.
|
ApiResponse<Map<String,VariableValueDto>> |
TaskApi.submitWithHttpInfo(String id,
CompleteTaskDto completeTaskDto)
Completes a task and updates process variables using a form submit.
|
Modifier and Type | Method and Description |
---|---|
void |
TaskLocalVariableApi.putTaskLocalVariable(String id,
String varName,
VariableValueDto variableValueDto)
Sets a variable in the context of a given task.
|
okhttp3.Call |
TaskLocalVariableApi.putTaskLocalVariableAsync(String id,
String varName,
VariableValueDto variableValueDto,
ApiCallback<Void> _callback)
(asynchronously)
Sets a variable in the context of a given task.
|
okhttp3.Call |
TaskLocalVariableApi.putTaskLocalVariableCall(String id,
String varName,
VariableValueDto variableValueDto,
ApiCallback _callback)
Build call for putTaskLocalVariable
|
ApiResponse<Void> |
TaskLocalVariableApi.putTaskLocalVariableWithHttpInfo(String id,
String varName,
VariableValueDto variableValueDto)
Sets a variable in the context of a given task.
|
void |
TaskVariableApi.putTaskVariable(String id,
String varName,
VariableValueDto variableValueDto)
Updates a process variable that is visible from the Task scope.
|
okhttp3.Call |
TaskVariableApi.putTaskVariableAsync(String id,
String varName,
VariableValueDto variableValueDto,
ApiCallback<Void> _callback)
(asynchronously)
Updates a process variable that is visible from the Task scope.
|
okhttp3.Call |
TaskVariableApi.putTaskVariableCall(String id,
String varName,
VariableValueDto variableValueDto,
ApiCallback _callback)
Build call for putTaskVariable
|
ApiResponse<Void> |
TaskVariableApi.putTaskVariableWithHttpInfo(String id,
String varName,
VariableValueDto variableValueDto)
Updates a process variable that is visible from the Task scope.
|
void |
ProcessInstanceApi.setProcessInstanceVariable(String id,
String varName,
VariableValueDto variableValueDto)
Sets a variable of a given process instance by id.
|
okhttp3.Call |
ProcessInstanceApi.setProcessInstanceVariableAsync(String id,
String varName,
VariableValueDto variableValueDto,
ApiCallback<Void> _callback)
(asynchronously)
Sets a variable of a given process instance by id.
|
okhttp3.Call |
ProcessInstanceApi.setProcessInstanceVariableCall(String id,
String varName,
VariableValueDto variableValueDto,
ApiCallback _callback)
Build call for setProcessInstanceVariable
|
ApiResponse<Void> |
ProcessInstanceApi.setProcessInstanceVariableWithHttpInfo(String id,
String varName,
VariableValueDto variableValueDto)
Sets a variable of a given process instance by id.
|
Modifier and Type | Method and Description |
---|---|
okhttp3.Call |
TaskApi.completeAsync(String id,
CompleteTaskDto completeTaskDto,
ApiCallback<Map<String,VariableValueDto>> _callback)
(asynchronously)
Completes a task and updates process variables.
|
okhttp3.Call |
TaskApi.getFormVariablesAsync(String id,
String variableNames,
Boolean deserializeValues,
ApiCallback<Map<String,VariableValueDto>> _callback)
(asynchronously)
Retrieves the form variables for a task.
|
okhttp3.Call |
ProcessInstanceApi.getProcessInstanceVariableAsync(String id,
String varName,
Boolean deserializeValue,
ApiCallback<VariableValueDto> _callback)
(asynchronously)
Retrieves a variable of a given process instance by id.
|
okhttp3.Call |
ProcessInstanceApi.getProcessInstanceVariablesAsync(String id,
Boolean deserializeValue,
ApiCallback<Map<String,VariableValueDto>> _callback)
(asynchronously)
Retrieves all variables of a given process instance by id.
|
okhttp3.Call |
ProcessDefinitionApi.getStartFormVariablesAsync(String id,
String variableNames,
Boolean deserializeValues,
ApiCallback<Map<String,VariableValueDto>> _callback)
Get Start Form Variables (asynchronously)
Retrieves the start form variables for a process definition (only if they are defined via the [Generated Task Form](https://docs.camunda.org/manual/7.14/user-guide/task-forms/#generated-task-forms) approach).
|
okhttp3.Call |
ProcessDefinitionApi.getStartFormVariablesByKeyAndTenantIdAsync(String key,
String tenantId,
String variableNames,
Boolean deserializeValues,
ApiCallback<Map<String,VariableValueDto>> _callback)
Get Start Form Variables (asynchronously)
Retrieves the start form variables for the latest process definition for a tenant (only if they are defined via the [Generated Task Form](https://docs.camunda.org/manual/7.14/user-guide/task-forms/#generated-task-forms) approach).
|
okhttp3.Call |
ProcessDefinitionApi.getStartFormVariablesByKeyAsync(String key,
String variableNames,
Boolean deserializeValues,
ApiCallback<Map<String,VariableValueDto>> _callback)
Get Start Form Variables (asynchronously)
Retrieves the start form variables for the latest process definition which belongs to no tenant (only if they are defined via the [Generated Task Form](https://docs.camunda.org/manual/7.14/user-guide/task-forms/#generated-task-forms) approach).
|
okhttp3.Call |
TaskLocalVariableApi.getTaskLocalVariableAsync(String id,
String varName,
Boolean deserializeValue,
ApiCallback<VariableValueDto> _callback)
(asynchronously)
Retrieves a variable from the context of a given task by id.
|
okhttp3.Call |
TaskLocalVariableApi.getTaskLocalVariablesAsync(String id,
Boolean deserializeValues,
ApiCallback<Map<String,VariableValueDto>> _callback)
(asynchronously)
Retrieves all variables of a given task by id.
|
okhttp3.Call |
TaskVariableApi.getTaskVariableAsync(String id,
String varName,
Boolean deserializeValue,
ApiCallback<VariableValueDto> _callback)
(asynchronously)
Retrieves a variable from the context of a given task.
|
okhttp3.Call |
TaskVariableApi.getTaskVariablesAsync(String id,
Boolean deserializeValue,
ApiCallback<Map<String,VariableValueDto>> _callback)
(asynchronously)
Retrieves all variables visible from the task.
|
okhttp3.Call |
TaskApi.submitAsync(String id,
CompleteTaskDto completeTaskDto,
ApiCallback<Map<String,VariableValueDto>> _callback)
(asynchronously)
Completes a task and updates process variables using a form submit.
|
Modifier and Type | Method and Description |
---|---|
VariableValueDto |
VariableValueDto.putValueInfoItem(String key,
Object valueInfoItem) |
VariableValueDto |
VariableValueDto.type(String type) |
VariableValueDto |
VariableValueDto.value(Object value) |
VariableValueDto |
VariableValueDto.valueInfo(Map<String,Object> valueInfo) |
Modifier and Type | Method and Description |
---|---|
Map<String,VariableValueDto> |
CorrelationMessageDto.getCorrelationKeys()
Used for correlation of process instances that wait for incoming messages.
|
Map<String,VariableValueDto> |
CorrelationMessageDto.getLocalCorrelationKeys()
Local variables used for correlation of executions (process instances) that wait for incoming messages.
|
Map<String,VariableValueDto> |
CompleteExternalTaskDto.getLocalVariables()
A JSON object containing local variable key-value pairs.
|
Map<String,VariableValueDto> |
PatchVariablesDto.getModifications()
A JSON object containing variable key-value pairs.
|
Map<String,VariableValueDto> |
CorrelationMessageDto.getProcessVariables()
A map of variables that is injected into the triggered execution or process instance after the message has been delivered.
|
Map<String,VariableValueDto> |
CorrelationMessageDto.getProcessVariablesLocal()
A map of local variables that is injected into the triggered execution or process instance after the message has been delivered.
|
Map<String,VariableValueDto> |
EvaluationConditionDto.getVariables()
A map of variables which are used for evaluation of the conditions and are injected into the process instances which have been triggered.
|
Map<String,VariableValueDto> |
StartProcessInstanceFormDto.getVariables()
Get variables
|
Map<String,VariableValueDto> |
ProcessInstanceWithVariablesDto.getVariables()
The id of the process instance.
|
Map<String,VariableValueDto> |
ExternalTaskBpmnError.getVariables()
A JSON object containing variable key-value pairs.
|
Map<String,VariableValueDto> |
StartProcessInstanceDto.getVariables()
Get variables
|
Map<String,VariableValueDto> |
SetVariablesAsyncDto.getVariables()
A variables the operation will set in the root scope of the process instances.
|
Map<String,VariableValueDto> |
TaskBpmnErrorDto.getVariables()
A JSON object containing variable key-value pairs.
|
Map<String,VariableValueDto> |
CompleteExternalTaskDto.getVariables()
A JSON object containing variable key-value pairs.
|
Map<String,VariableValueDto> |
ProcessInstanceWithVariablesDtoAllOf.getVariables()
The id of the process instance.
|
Map<String,VariableValueDto> |
SignalDto.getVariables()
A JSON object containing variable key-value pairs.
|
Map<String,VariableValueDto> |
MessageCorrelationResultWithVariableDto.getVariables()
This property is returned if the `variablesInResultEnabled` is set to `true`.
|
Map<String,VariableValueDto> |
TaskEscalationDto.getVariables()
A JSON object containing variable key-value pairs.
|
Map<String,VariableValueDto> |
CompleteTaskDto.getVariables()
A JSON object containing variable key-value pairs.
|
Map<String,VariableValueDto> |
LockedExternalTaskDto.getVariables()
A JSON object containing a property for each of the requested variables.
|
Copyright © 2022. All rights reserved.