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

Examples of org.camunda.bpm.engine.variable.value.builder.ObjectValueBuilder


  public boolean isPrimitiveValueType() {
    return false;
  }

  public TypedValue createValue(Object value, Map<String, Object> valueInfo) {
    ObjectValueBuilder builder = Variables.objectValue(value);

    if(valueInfo != null) {
      applyValueInfo(builder, valueInfo);
    }

    return builder.create();
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.variable.value.builder.ObjectValueBuilder

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.