| Modifier and Type | Method and Description |
|---|---|
TaskDto |
TaskDto.clone() |
| Constructor and Description |
|---|
TasksList(List<TaskDto> listTasks,
long tasksSize) |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
TaskRestService.addTask(TaskDto task) |
javax.ws.rs.core.Response |
TaskRestService.updateTaskById(long id,
TaskDto updatedTask) |
| Constructor and Description |
|---|
TaskEntity(TaskDto task,
long commentCount) |
| Modifier and Type | Method and Description |
|---|---|
TaskDto |
TaskService.cloneTask(long taskId)
Clone the task from a task with given
taskId. |
TaskDto |
TaskService.createTask(TaskDto task)
Create a new task.
|
TaskDto |
TaskService.findTaskByActivityId(String activityId) |
TaskDto |
TaskService.getTask(long taskId)
Return the task with given
taskId. |
TaskDto |
TaskService.updateTask(TaskDto task)
Update the task.
|
| Modifier and Type | Method and Description |
|---|---|
List<TaskDto> |
TaskService.findTasks(String user,
String query,
int limit) |
List<TaskDto> |
TaskService.findTasks(TaskQuery query,
int offset,
int limit)
Find tasks assigned to a user using a term to find in title or description
of the task
|
List<TaskDto> |
TaskService.findTasksByLabel(LabelDto label,
List<Long> projectIds,
String username,
OrderBy orderBy,
int offset,
int limit) |
List<TaskDto> |
TaskService.getAssignedTasks(String user,
int limit) |
List<TaskDto> |
TaskService.getCollaboratedTasks(String user,
int limit) |
List<TaskDto> |
TaskService.getIncomingTasks(String user,
int offset,
int limit) |
List<TaskDto> |
TaskService.getOverdueTasks(String user,
int limit) |
List<TaskDto> |
TaskService.getUncompletedTasks(String user,
int limit) |
List<TaskDto> |
TaskService.getWatchedTasks(String user,
int limit) |
| Modifier and Type | Method and Description |
|---|---|
CommentDto |
CommentService.addComment(TaskDto task,
long parentCommentId,
String username,
String comment) |
CommentDto |
CommentService.addComment(TaskDto task,
String username,
String commentText) |
void |
LabelService.addTaskToLabel(TaskDto task,
Long labelId) |
void |
TaskService.addWatcherToTask(String username,
TaskDto task) |
TaskDto |
TaskService.createTask(TaskDto task)
Create a new task.
|
void |
TaskService.deleteWatcherOfTask(String username,
TaskDto task) |
Set<String> |
TaskService.getWatchersOfTask(TaskDto task) |
void |
LabelService.removeTaskFromLabel(TaskDto task,
Long labelId) |
TaskDto |
TaskService.updateTask(TaskDto task)
Update the task.
|
| Modifier and Type | Method and Description |
|---|---|
TaskDto |
TaskServiceImpl.cloneTask(long id) |
TaskDto |
TaskServiceImpl.createTask(TaskDto task) |
TaskDto |
TaskServiceImpl.findTaskByActivityId(String id) |
TaskDto |
TaskServiceImpl.getTask(long id) |
TaskDto |
TaskServiceImpl.updateTask(TaskDto task) |
| Modifier and Type | Method and Description |
|---|---|
List<TaskDto> |
TaskServiceImpl.findTasks(String user,
String query,
int limit) |
List<TaskDto> |
TaskServiceImpl.findTasks(TaskQuery query,
int offset,
int limit) |
List<TaskDto> |
TaskServiceImpl.findTasksByLabel(LabelDto label,
List<Long> projectIds,
String username,
OrderBy orderBy,
int offset,
int limit) |
List<TaskDto> |
TaskServiceImpl.getAssignedTasks(String user,
int limit) |
List<TaskDto> |
TaskServiceImpl.getCollaboratedTasks(String user,
int limit) |
List<TaskDto> |
TaskServiceImpl.getIncomingTasks(String user,
int offset,
int limit) |
List<TaskDto> |
TaskServiceImpl.getOverdueTasks(String user,
int limit) |
List<TaskDto> |
TaskServiceImpl.getUncompletedTasks(String user,
int limit) |
List<TaskDto> |
TaskServiceImpl.getWatchedTasks(String user,
int limit) |
| Modifier and Type | Method and Description |
|---|---|
CommentDto |
CommentServiceImpl.addComment(TaskDto task,
long parentCommentId,
String username,
String comment) |
CommentDto |
CommentServiceImpl.addComment(TaskDto task,
String username,
String comment) |
void |
LabelServiceImpl.addTaskToLabel(TaskDto task,
Long labelId) |
void |
TaskServiceImpl.addWatcherToTask(String user,
TaskDto task) |
TaskDto |
TaskServiceImpl.createTask(TaskDto task) |
void |
TaskServiceImpl.deleteWatcherOfTask(String user,
TaskDto task) |
Set<String> |
TaskServiceImpl.getWatchersOfTask(TaskDto task) |
void |
LabelServiceImpl.removeTaskFromLabel(TaskDto task,
Long labelId) |
TaskDto |
TaskServiceImpl.updateTask(TaskDto task) |
| Modifier and Type | Method and Description |
|---|---|
TaskDto |
TaskStorage.createTask(TaskDto task)
Create a new task.
|
TaskDto |
TaskStorage.findTaskByActivityId(String activityId) |
TaskDto |
TaskStorage.getTaskById(long id)
Find task by its id
|
TaskDto |
TaskStorage.getTaskWithCoworkers(long id) |
TaskDto |
TaskStorage.toDto(Task taskEntity) |
TaskDto |
TaskStorage.update(TaskDto task)
Update the provided task.
|
| Modifier and Type | Method and Description |
|---|---|
List<TaskDto> |
TaskStorage.findByUser(String user) |
List<TaskDto> |
TaskStorage.findTasks(String user,
String query,
int limit)
Find tasks assigned to a user using a term to find in title or description of
the task
|
List<TaskDto> |
TaskStorage.findTasks(TaskQuery query,
int offset,
int limit) |
List<TaskDto> |
TaskStorage.findTasksByLabel(LabelDto label,
List<Long> projectIds,
String username,
OrderBy orderBy,
int offset,
int limit) |
List<TaskDto> |
TaskStorage.getAssignedTasks(String user,
int limit) |
List<TaskDto> |
TaskStorage.getCollaboratedTasks(String user,
int limit) |
List<TaskDto> |
TaskStorage.getIncomingTasks(String user,
int offset,
int limit) |
List<TaskDto> |
TaskStorage.getOverdueTasks(String user,
int limit) |
List<TaskDto> |
TaskStorage.getUncompletedTasks(String user,
int limit) |
List<TaskDto> |
TaskStorage.getWatchedTasks(String user,
int limit) |
| Modifier and Type | Method and Description |
|---|---|
CommentDto |
CommentStorage.addComment(TaskDto task,
long parentCommentId,
String username,
String comment) |
CommentDto |
CommentStorage.addComment(TaskDto task,
String username,
String commentText) |
void |
LabelStorage.addTaskToLabel(TaskDto task,
Long labelId) |
void |
TaskStorage.addWatcherToTask(String username,
TaskDto task) |
TaskDto |
TaskStorage.createTask(TaskDto task)
Create a new task.
|
void |
TaskStorage.delete(TaskDto task)
Delete the provided task.
|
void |
TaskStorage.deleteWatcherOfTask(String username,
TaskDto task) |
Set<String> |
TaskStorage.getWatchersOfTask(TaskDto task) |
void |
LabelStorage.removeTaskFromLabel(TaskDto task,
Long labelId) |
Task |
TaskStorage.toEntity(TaskDto taskDto) |
TaskDto |
TaskStorage.update(TaskDto task)
Update the provided task.
|
| Modifier and Type | Method and Description |
|---|---|
TaskDto |
TaskStorageImpl.createTask(TaskDto task) |
TaskDto |
TaskStorageImpl.findTaskByActivityId(String activityId) |
TaskDto |
TaskStorageImpl.getTaskById(long id) |
TaskDto |
TaskStorageImpl.getTaskWithCoworkers(long id) |
TaskDto |
TaskStorageImpl.toDto(Task taskEntity) |
TaskDto |
TaskStorageImpl.update(TaskDto task) |
| Modifier and Type | Method and Description |
|---|---|
List<TaskDto> |
TaskStorageImpl.findByUser(String user) |
List<TaskDto> |
TaskStorageImpl.findTasks(String user,
String query,
int limit)
Find tasks assigned to a user using a term to find in title or description
of the task
|
List<TaskDto> |
TaskStorageImpl.findTasks(TaskQuery query,
int offset,
int limit) |
List<TaskDto> |
TaskStorageImpl.findTasksByLabel(LabelDto label,
List<Long> projectIds,
String username,
OrderBy orderBy,
int offset,
int limit) |
List<TaskDto> |
TaskStorageImpl.getAssignedTasks(String user,
int limit) |
List<TaskDto> |
TaskStorageImpl.getCollaboratedTasks(String user,
int limit) |
List<TaskDto> |
TaskStorageImpl.getIncomingTasks(String user,
int offset,
int limit) |
List<TaskDto> |
TaskStorageImpl.getOverdueTasks(String user,
int limit) |
List<TaskDto> |
TaskStorageImpl.getUncompletedTasks(String user,
int limit) |
List<TaskDto> |
TaskStorageImpl.getWatchedTasks(String user,
int limit) |
| Modifier and Type | Method and Description |
|---|---|
CommentDto |
CommentStorageImpl.addComment(TaskDto task,
long parentCommentId,
String username,
String comment) |
CommentDto |
CommentStorageImpl.addComment(TaskDto task,
String username,
String commentText) |
void |
LabelStorageImpl.addTaskToLabel(TaskDto task,
Long labelId) |
void |
TaskStorageImpl.addWatcherToTask(String username,
TaskDto task) |
TaskDto |
TaskStorageImpl.createTask(TaskDto task) |
void |
TaskStorageImpl.delete(TaskDto task) |
void |
TaskStorageImpl.deleteWatcherOfTask(String username,
TaskDto task) |
Set<String> |
TaskStorageImpl.getWatchersOfTask(TaskDto task) |
void |
LabelStorageImpl.removeTaskFromLabel(TaskDto task,
Long labelId) |
Task |
TaskStorageImpl.toEntity(TaskDto taskDto) |
TaskDto |
TaskStorageImpl.update(TaskDto task) |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
TaskUtil.hasEditPermission(TaskDto task) |
static boolean |
TaskUtil.hasViewPermission(TaskDto task) |
Copyright © 2003–2021 eXo Platform SAS. All rights reserved.