Uses of Class
org.exoplatform.task.dto.TaskDto
-
-
Uses of TaskDto in org.exoplatform.task.dto
Methods in org.exoplatform.task.dto that return TaskDto Modifier and Type Method Description TaskDtoTaskDto. clone()Constructor parameters in org.exoplatform.task.dto with type arguments of type TaskDto Constructor Description TasksList(List<TaskDto> listTasks, long tasksSize) -
Uses of TaskDto in org.exoplatform.task.rest
Methods in org.exoplatform.task.rest with parameters of type TaskDto Modifier and Type Method Description javax.ws.rs.core.ResponseTaskRestService. addTask(TaskDto task)javax.ws.rs.core.ResponseTaskRestService. updateTaskById(long id, TaskDto updatedTask) -
Uses of TaskDto in org.exoplatform.task.rest.model
Constructors in org.exoplatform.task.rest.model with parameters of type TaskDto Constructor Description TaskEntity(TaskDto task, long commentCount) -
Uses of TaskDto in org.exoplatform.task.service
Methods in org.exoplatform.task.service that return TaskDto Modifier and Type Method Description TaskDtoTaskPayload. after()TaskDtoTaskPayload. before()TaskDtoTaskBuilder. build()TaskDtoTaskService. cloneTask(long taskId)Clone the task from a task with giventaskId.TaskDtoTaskService. createTask(TaskDto task)Create a new task.TaskDtoTaskService. findTaskByActivityId(String activityId)TaskDtoTaskService. getTask(long taskId)Return the task with giventaskId.TaskDtoTaskParser. parse(String input, ParserContext context)TaskDtoTaskService. updateTask(TaskDto task)Update the task.Methods in org.exoplatform.task.service that return types with arguments of type TaskDto Modifier and Type Method 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 taskList<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)Methods in org.exoplatform.task.service with parameters of type TaskDto Modifier and Type Method Description CommentDtoCommentService. addComment(TaskDto task, long parentCommentId, String username, String comment)CommentDtoCommentService. addComment(TaskDto task, String username, String commentText)voidLabelService. addTaskToLabel(TaskDto task, Long labelId)voidTaskService. addWatcherToTask(String username, TaskDto task)TaskDtoTaskService. createTask(TaskDto task)Create a new task.voidTaskService. deleteWatcherOfTask(String username, TaskDto task)List<LabelDto>LabelService. findLabelsByTask(TaskDto task, long projectId, org.exoplatform.services.security.Identity currentUser, int offset, int limit)Set<String>TaskService. getWatchersOfTask(TaskDto task)voidLabelService. removeTaskFromLabel(TaskDto task, Long labelId)TaskDtoTaskService. updateTask(TaskDto task)Update the task.Constructors in org.exoplatform.task.service with parameters of type TaskDto Constructor Description TaskPayload(TaskDto before, TaskDto after) -
Uses of TaskDto in org.exoplatform.task.service.impl
Methods in org.exoplatform.task.service.impl that return TaskDto Modifier and Type Method Description TaskDtoTaskServiceImpl. cloneTask(long id)TaskDtoTaskServiceImpl. createTask(TaskDto task)TaskDtoTaskServiceImpl. findTaskByActivityId(String id)TaskDtoTaskServiceImpl. getTask(long id)TaskDtoTaskParserImpl. parse(String input, ParserContext context)TaskDtoTaskServiceImpl. updateTask(TaskDto task)Methods in org.exoplatform.task.service.impl that return types with arguments of type TaskDto Modifier and Type Method 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)Methods in org.exoplatform.task.service.impl with parameters of type TaskDto Modifier and Type Method Description CommentDtoCommentServiceImpl. addComment(TaskDto task, long parentCommentId, String username, String comment)CommentDtoCommentServiceImpl. addComment(TaskDto task, String username, String comment)voidLabelServiceImpl. addTaskToLabel(TaskDto task, Long labelId)voidTaskServiceImpl. addWatcherToTask(String user, TaskDto task)TaskDtoTaskServiceImpl. createTask(TaskDto task)voidTaskServiceImpl. deleteWatcherOfTask(String user, TaskDto task)List<LabelDto>LabelServiceImpl. findLabelsByTask(TaskDto task, long projectId, org.exoplatform.services.security.Identity currentUser, int offset, int limit)Set<String>TaskServiceImpl. getWatchersOfTask(TaskDto task)voidLabelServiceImpl. removeTaskFromLabel(TaskDto task, Long labelId)TaskDtoTaskServiceImpl. updateTask(TaskDto task) -
Uses of TaskDto in org.exoplatform.task.storage
Methods in org.exoplatform.task.storage that return TaskDto Modifier and Type Method Description TaskDtoTaskStorage. createTask(TaskDto task)Create a new task.TaskDtoTaskStorage. findTaskByActivityId(String activityId)TaskDtoTaskStorage. getTaskById(long id)Find task by its idTaskDtoTaskStorage. getTaskWithCoworkers(long id)TaskDtoTaskStorage. update(TaskDto task)Update the provided task.Methods in org.exoplatform.task.storage that return types with arguments of type TaskDto Modifier and Type Method 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 taskList<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)Methods in org.exoplatform.task.storage with parameters of type TaskDto Modifier and Type Method Description CommentDtoCommentStorage. addComment(TaskDto task, long parentCommentId, String username, String comment)CommentDtoCommentStorage. addComment(TaskDto task, String username, String commentText)voidLabelStorage. addTaskToLabel(TaskDto task, Long labelId)voidTaskStorage. addWatcherToTask(String username, TaskDto task)TaskDtoTaskStorage. createTask(TaskDto task)Create a new task.voidTaskStorage. delete(TaskDto task)Delete the provided task.voidTaskStorage. deleteWatcherOfTask(String username, TaskDto task)List<LabelDto>LabelStorage. findLabelsByTask(TaskDto task, long projectId, org.exoplatform.services.security.Identity currentUser, ProjectStorage projectStorage, int offset, int limit)Set<String>TaskStorage. getWatchersOfTask(TaskDto task)voidLabelStorage. removeTaskFromLabel(TaskDto task, Long labelId)TaskDtoTaskStorage. update(TaskDto task)Update the provided task. -
Uses of TaskDto in org.exoplatform.task.storage.impl
Methods in org.exoplatform.task.storage.impl that return TaskDto Modifier and Type Method Description TaskDtoTaskStorageImpl. createTask(TaskDto task)TaskDtoTaskStorageImpl. findTaskByActivityId(String activityId)TaskDtoTaskStorageImpl. getTaskById(long id)TaskDtoTaskStorageImpl. getTaskWithCoworkers(long id)TaskDtoTaskStorageImpl. update(TaskDto task)Methods in org.exoplatform.task.storage.impl that return types with arguments of type TaskDto Modifier and Type Method 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 taskList<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)Methods in org.exoplatform.task.storage.impl with parameters of type TaskDto Modifier and Type Method Description CommentDtoCommentStorageImpl. addComment(TaskDto task, long parentCommentId, String username, String comment)CommentDtoCommentStorageImpl. addComment(TaskDto task, String username, String comment)voidLabelStorageImpl. addTaskToLabel(TaskDto task, Long labelId)voidTaskStorageImpl. addWatcherToTask(String username, TaskDto task)TaskDtoTaskStorageImpl. createTask(TaskDto task)voidTaskStorageImpl. delete(TaskDto task)voidTaskStorageImpl. deleteWatcherOfTask(String username, TaskDto task)List<LabelDto>LabelStorageImpl. findLabelsByTask(TaskDto task, long projectId, org.exoplatform.services.security.Identity currentUser, ProjectStorage projectStorage, int offset, int limit)Set<String>TaskStorageImpl. getWatchersOfTask(TaskDto task)voidLabelStorageImpl. removeTaskFromLabel(TaskDto task, Long labelId)TaskDtoTaskStorageImpl. update(TaskDto task) -
Uses of TaskDto in org.exoplatform.task.util
Methods in org.exoplatform.task.util that return TaskDto Modifier and Type Method Description static TaskDtoTaskUtil. saveTaskField(TaskDto task, org.exoplatform.services.security.Identity userId, String param, String[] values, TimeZone timezone, TaskService taskService, LabelService labelService, StatusService statusService)static TaskDtoStorageUtil. taskToDto(Task taskEntity, ProjectStorage projectStorage)Methods in org.exoplatform.task.util with parameters of type TaskDto Modifier and Type Method Description static StringTaskUtil. buildTaskURL(TaskDto task)static StringTaskUtil. buildTaskURL(TaskDto task, org.exoplatform.portal.mop.SiteKey siteKey, org.exoplatform.container.ExoContainer container, org.exoplatform.web.controller.router.Router router)static Set<String>TaskUtil. getWatcher(TaskService taskService, TaskDto task)static booleanTaskUtil. hasDeletePermission(TaskDto task)static booleanTaskUtil. hasEditPermission(TaskService taskService, TaskDto task)static booleanTaskUtil. hasViewOnlyPermission(TaskService taskService, TaskDto task)static booleanTaskUtil. hasViewPermission(TaskService taskService, TaskDto task)static LabelDtoStorageUtil. labelToDto(Label label, TaskDto task, org.exoplatform.services.security.Identity currentUser, ProjectStorage projectStorage)static TaskDtoTaskUtil. saveTaskField(TaskDto task, org.exoplatform.services.security.Identity userId, String param, String[] values, TimeZone timezone, TaskService taskService, LabelService labelService, StatusService statusService)static TaskStorageUtil. taskToEntity(TaskDto taskDto)
-