Package org.camunda.bpm.engine.impl.cmmn.entity.runtime

Examples of org.camunda.bpm.engine.impl.cmmn.entity.runtime.CaseExecutionEntity.forceUpdate()


  }

  protected void fireForceUpdate(CmmnActivityExecution execution) {
    if (execution instanceof CaseExecutionEntity) {
      CaseExecutionEntity entity = (CaseExecutionEntity) execution;
      entity.forceUpdate();
    }
  }

  protected String getTypeName() {
    return "stage";
View Full Code Here


  public void childStateChanged(CmmnExecution execution, CmmnExecution child) {
    if (child.isDisabled() || child.isCompleted() || child.isTerminated()) {

      if (execution instanceof CaseExecutionEntity) {
        CaseExecutionEntity entity = (CaseExecutionEntity) execution;
        entity.forceUpdate();
      }

      // TODO: evaluate autoComplete property
      boolean autoComplete = false;
      if (canComplete(execution, autoComplete, false)) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.