58596061626364
* @author Heiko Braun <heiko.braun@jboss.com> */ public class TaskServiceImpl extends AbstractServiceImpl implements TaskService { public Task newTask() { return commandService.execute(new NewTaskCmd(null)); }
135136137138139140141
public List<Task> getSubTasks(String taskId) { return commandService.execute(new GetSubTasksCmd(taskId)); } public Task newTask(String parentTaskId) { return commandService.execute(new NewTaskCmd(parentTaskId)); }
59606162636465
149150151152153154155