Package org.camunda.bpm.engine.rest.dto

Examples of org.camunda.bpm.engine.rest.dto.VariableValueDto


    VariableMap variables = getVariableEntities(deserializeValues);

    Map<String, VariableValueDto> values = new HashMap<String, VariableValueDto>();
    for (String variableName : variables.keySet()) {
      VariableValueDto valueDto = VariableValueDto.fromTypedValue(variables.getValueTyped(variableName));
      values.put(variableName, valueDto);
    }

    return values;
  }
View Full Code Here


    dto.revision = historicVariableUpdate.getRevision();
    dto.variableName = historicVariableUpdate.getVariableName();

    if(historicVariableUpdate.getErrorMessage() == null) {
      VariableValueDto variableValueDto = VariableValueDto.fromTypedValue(historicVariableUpdate.getTypedValue());
      dto.value = variableValueDto.getValue();
      dto.variableType = variableValueDto.getType();
      dto.valueInfo = variableValueDto.getValueInfo();
    }
    else {
      dto.errorMessage = historicVariableUpdate.getErrorMessage();
      dto.variableType = VariableValueDto.toRestApiTypeName(historicVariableUpdate.getTypeName());
    }
View Full Code Here

  }

  public static HalVariableValue fromVariableInstance(VariableInstance variableInstance) {
    HalVariableValue dto = new HalVariableValue();

    VariableValueDto variableValueDto = VariableValueDto.fromTypedValue(variableInstance.getTypedValue());

    dto.name = variableInstance.getName();
    dto.value = variableValueDto.getValue();
    dto.type = variableValueDto.getType();
    dto.valueInfo = variableValueDto.getValueInfo();

    return dto;
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.rest.dto.VariableValueDto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.