Package org.jbpm.client

Examples of org.jbpm.client.GetVariable


  public Execution findExecution(String processDefinitionName, String key) {
    return (Execution) commandService.execute(new FindExecution(processDefinitionName, key));
  }

  public Object getVariable(long executionDbid, String variableName) {
    return commandService.execute(new GetVariable(executionDbid, variableName));
  }
View Full Code Here

TOP

Related Classes of org.jbpm.client.GetVariable

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.