Package org.jbpm.task.service.responsehandlers

Examples of org.jbpm.task.service.responsehandlers.BlockingTaskSummaryResponseHandler.waitTillDone()


  }

  public List<TaskSummary> getAssignedTasks(User user) {
    BlockingTaskSummaryResponseHandler taskSummaryResponseHandler = new BlockingTaskSummaryResponseHandler();
    client.getTasksAssignedAsPotentialOwner(user.getId(), "en-UK", taskSummaryResponseHandler);
    taskSummaryResponseHandler.waitTillDone(DEFAULT_WAIT_TIME);
    List<TaskSummary> tasks = taskSummaryResponseHandler.getResults();
    return tasks;
  }

  public void completeTask(User user, TaskSummary task, Map data) {
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.