Package org.camunda.bpm.engine.impl.persistence.entity

Examples of org.camunda.bpm.engine.impl.persistence.entity.HistoricVariableInstanceEntity


            .findHistoricVariableInstancesByQueryCriteria(this, page);

    if (historicVariableInstances!=null) {
      for (HistoricVariableInstance historicVariableInstance: historicVariableInstances) {

        HistoricVariableInstanceEntity variableInstanceEntity = (HistoricVariableInstanceEntity) historicVariableInstance;

        if (shouldFetchSerializedValueFor(variableInstanceEntity)) {
          try {
            variableInstanceEntity.getSerializedValue();

            if (shouldFetchValueFor(variableInstanceEntity)) {
              variableInstanceEntity.getValue();
            }

          } catch(Exception t) {
            // do not fail if one of the variables fails to load
            LOGGER.log(Level.FINE, "Exception while getting value for variable", t);
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.impl.persistence.entity.HistoricVariableInstanceEntity

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.