Examples of HasExecutionVariableCmd


Examples of org.activiti.engine.impl.cmd.HasExecutionVariableCmd

        return variableClass.cast(getVariable(executionId, variableName));
    }

  @Override
  public boolean hasVariable(String executionId, String variableName) {
    return commandExecutor.execute(new HasExecutionVariableCmd(executionId, variableName, false));
  }
View Full Code Here

Examples of org.activiti.engine.impl.cmd.HasExecutionVariableCmd

      return variableClass.cast(getVariableLocal(executionId, variableName));
  }

  @Override
  public boolean hasVariableLocal(String executionId, String variableName) {
    return commandExecutor.execute(new HasExecutionVariableCmd(executionId, variableName, true));
  }
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.