Package com.founder.fix.fixflow.core.impl.cmd

Examples of com.founder.fix.fixflow.core.impl.cmd.DeleteProcessInstanceVaribalesCmd


    QueryVariablesCommand queryVariablesCommand = new QueryVariablesCommand();
    queryVariablesCommand.setProcessInstanceId(processInstanceId);
    List<String> variableNames = new ArrayList<String>();
    variableNames.add(variableName);
    queryVariablesCommand.setVariableNames(variableNames);
    commandExecutor.execute(new DeleteProcessInstanceVaribalesCmd(queryVariablesCommand));
  }
View Full Code Here


 
  public void deleteProcessInstanceVariables(String processInstanceId, List<String> variableNames) {
    QueryVariablesCommand queryVariablesCommand = new QueryVariablesCommand();
    queryVariablesCommand.setProcessInstanceId(processInstanceId);
    queryVariablesCommand.setVariableNames(variableNames);
    commandExecutor.execute(new DeleteProcessInstanceVaribalesCmd(queryVariablesCommand));
  }
View Full Code Here

  }
 
  public void deleteProcessInstanceVariables(String processInstanceId) {
    QueryVariablesCommand queryVariablesCommand = new QueryVariablesCommand();
    queryVariablesCommand.setProcessInstanceId(processInstanceId);
    commandExecutor.execute(new DeleteProcessInstanceVaribalesCmd(queryVariablesCommand));
  }
View Full Code Here

TOP

Related Classes of com.founder.fix.fixflow.core.impl.cmd.DeleteProcessInstanceVaribalesCmd

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.