Package org.camunda.bpm.engine.variable.value

Examples of org.camunda.bpm.engine.variable.value.SerializableValue


    String typeName = typedValue.getType().getName();
    dto.setType(toRestApiTypeName(typeName));
    dto.setValueInfo(typedValue.getType().getValueInfo(typedValue));

    if(typedValue instanceof SerializableValue) {
      SerializableValue serializableValue = (SerializableValue) typedValue;

      if(serializableValue.isDeserialized()) {
        dto.setValue(serializableValue.getValue());
      }
      else {
        dto.setValue(serializableValue.getValueSerialized());
      }

    }
    else {
      dto.setValue(typedValue.getValue());
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.variable.value.SerializableValue

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.