Package org.camunda.bpm.engine.impl.cmd

Examples of org.camunda.bpm.engine.impl.cmd.GetStartFormVariablesCmd


  public VariableMap getStartFormVariables(String processDefinitionId) {
    return getStartFormVariables(processDefinitionId, null, true);
  }

  public VariableMap getStartFormVariables(String processDefinitionId, Collection<String> formVariables, boolean deserializeObjectValues) {
    return commandExecutor.execute(new GetStartFormVariablesCmd(processDefinitionId, formVariables, deserializeObjectValues));
  }
View Full Code Here


  public String getTaskFormKey(String processDefinitionId, String taskDefinitionKey) {
    return commandExecutor.execute(new GetFormKeyCmd(processDefinitionId, taskDefinitionKey));
  }

  public Map<String, VariableInstance> getStartFormVariables(String processDefinitionId) {
    return commandExecutor.execute(new GetStartFormVariablesCmd(processDefinitionId, null));
  }
View Full Code Here

  public Map<String, VariableInstance> getStartFormVariables(String processDefinitionId) {
    return commandExecutor.execute(new GetStartFormVariablesCmd(processDefinitionId, null));
  }

  public Map<String, VariableInstance> getStartFormVariables(String processDefinitionId, Collection<String> formVariables) {
    return commandExecutor.execute(new GetStartFormVariablesCmd(processDefinitionId, formVariables));
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.impl.cmd.GetStartFormVariablesCmd

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.