Package org.activiti.engine.impl.cmd

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


      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

Related Classes of org.activiti.engine.impl.cmd.HasExecutionVariableCmd

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.