Package org.camunda.bpm.engine.rest.dto.task

Examples of org.camunda.bpm.engine.rest.dto.task.TaskDto


    List<Task> matchingTasks = executeTaskQuery(firstResult, maxResults, query);

    List<TaskDto> tasks = new ArrayList<TaskDto>();
    for (Task task : matchingTasks) {
      TaskDto returnTask = TaskDto.fromEntity(task);
      tasks.add(returnTask);
    }

    return tasks;
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.rest.dto.task.TaskDto

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.