Package org.camunda.bpm.engine.rest.dto
Class VariableValueDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.VariableValueDto
-
- Direct Known Subclasses:
HistoricDecisionInputInstanceDto
,HistoricDecisionOutputInstanceDto
,HistoricVariableInstanceDto
,MigrationVariableValidationReportDto
,TriggerVariableValueDto
,VariableInstanceDto
public class VariableValueDto extends Object
- Author:
- Daniel Meyer, Thorben Lindhauer
-
-
Constructor Summary
Constructors Constructor Description VariableValueDto()
-
Method Summary
-
-
-
Method Detail
-
getType
public String getType()
-
setType
public void setType(String type)
-
getValue
public Object getValue()
-
setValue
public void setValue(Object value)
-
toTypedValue
public TypedValue toTypedValue(ProcessEngine processEngine, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
fileValueWithDecodedString
protected FileValue fileValueWithDecodedString(FileValue fileValue, String value)
-
toMap
public static VariableMap toMap(Map<String,VariableValueDto> variables, ProcessEngine processEngine, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
fromMap
public static Map<String,VariableValueDto> fromMap(VariableMap variables)
-
fromMap
public static Map<String,VariableValueDto> fromMap(VariableMap variables, boolean preferSerializedValue)
-
fromTypedValue
public static VariableValueDto fromTypedValue(TypedValue typedValue)
-
fromTypedValue
public static VariableValueDto fromTypedValue(TypedValue typedValue, boolean preferSerializedValue)
-
fromTypedValue
public static void fromTypedValue(VariableValueDto dto, TypedValue typedValue)
-
fromTypedValue
public static void fromTypedValue(VariableValueDto dto, TypedValue typedValue, boolean preferSerializedValue)
-
fromFormPart
public static VariableValueDto fromFormPart(String type, MultipartFormData.FormPart binaryDataFormPart)
-
-