Examples of SaveVariablesCommand


Examples of com.founder.fix.fixflow.core.impl.command.SaveVariablesCommand

  public void updateProcessInstanceBusinessKey(String processInstanceId, String businessKey) {
    commandExecutor.execute(new UpdateBusinessKeyCmd(processInstanceId, businessKey));
  }

  public void setProcessInstanceVariable(String processInstanceId, String variableName, Object value) {
    SaveVariablesCommand saveVariablesCommand = new SaveVariablesCommand();
    saveVariablesCommand.setProcessInstanceId(processInstanceId);
    Map<String, Object> map = new HashMap<String, Object>();
    map.put(variableName, value);
    saveVariablesCommand.setVariables(map);
    commandExecutor.execute(new SaveVariablesCmd(saveVariablesCommand));
  }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.command.SaveVariablesCommand

    saveVariablesCommand.setVariables(map);
    commandExecutor.execute(new SaveVariablesCmd(saveVariablesCommand));
  }

  public void setProcessInstanceVariables(String processInstanceId, Map<String, ? extends Object> variables) {
    SaveVariablesCommand saveVariablesCommand = new SaveVariablesCommand();
    saveVariablesCommand.setProcessInstanceId(processInstanceId);
    saveVariablesCommand.setVariables(variables);
    commandExecutor.execute(new SaveVariablesCmd(saveVariablesCommand));
  }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.command.SaveVariablesCommand

    Map<String, Object> map = commandExecutor.execute(new QueryVariablesCmd<Map<String, Object>>(queryVariablesCommand));
    return map;
  }

  public void setTokenVariable(String tokenId, String variableName, Object value) {
    SaveVariablesCommand saveVariablesCommand = new SaveVariablesCommand();
    saveVariablesCommand.setTokenId(tokenId);
    Map<String, Object> map = new HashMap<String, Object>();
    map.put(variableName, value);
    saveVariablesCommand.setVariables(map);
    commandExecutor.execute(new SaveVariablesCmd(saveVariablesCommand));
  }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.command.SaveVariablesCommand

    saveVariablesCommand.setVariables(map);
    commandExecutor.execute(new SaveVariablesCmd(saveVariablesCommand));
  }

  public void setTokenVariables(String tokenId, Map<String, ? extends Object> variables) {
    SaveVariablesCommand saveVariablesCommand = new SaveVariablesCommand();
    saveVariablesCommand.setTokenId(tokenId);
    saveVariablesCommand.setVariables(variables);
    commandExecutor.execute(new SaveVariablesCmd(saveVariablesCommand));
  }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.command.SaveVariablesCommand

    return commandExecutor.execute(new GetRollBackTaskCmd(taskId));
  }

  public void setVariable(String taskId, String variableName, Object value) {

    SaveVariablesCommand saveVariablesCommand = new SaveVariablesCommand();
    saveVariablesCommand.setTaskInstanceId(taskId);
    Map<String, Object> map = new HashMap<String, Object>();
    map.put(variableName, value);
    saveVariablesCommand.setVariables(map);
    commandExecutor.execute(new SaveVariablesCmd(saveVariablesCommand));

  }
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.command.SaveVariablesCommand

    commandExecutor.execute(new SaveVariablesCmd(saveVariablesCommand));

  }

  public void setVariables(String taskId, Map<String, ? extends Object> variables) {
    SaveVariablesCommand saveVariablesCommand = new SaveVariablesCommand();
    saveVariablesCommand.setTaskInstanceId(taskId);
    saveVariablesCommand.setVariables(variables);
    commandExecutor.execute(new SaveVariablesCmd(saveVariablesCommand));
  }
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.