Returns the compact task records for all tasks within the given project, ordered by their priority within the project. @param project The project in which to search for tasks. @return Request object
(String project)
| 106 | * @return Request object |
| 107 | */ |
| 108 | public CollectionRequest<Task> findByProject(String project) { |
| 109 | |
| 110 | String path = String.format("/projects/%s/tasks", project); |
| 111 | return new CollectionRequest<Task>(this, Task.class, path, "GET"); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Returns the compact task records for all tasks with the given tag. |
no outgoing calls