Uses of Class
edu.cnm.deepdive.teamassignments.model.entity.Task
Packages that use Task
Package
Description
-
Uses of Task in edu.cnm.deepdive.teamassignments.controller
Methods in edu.cnm.deepdive.teamassignments.controller that return TaskModifier and TypeMethodDescriptionTaskController.get(long groupId, long taskId, Authentication auth)
TaskController.put(long groupId, long taskId, Task task, Authentication auth)
Methods in edu.cnm.deepdive.teamassignments.controller that return types with arguments of type TaskModifier and TypeMethodDescriptionTaskController.getAll(long groupId, Authentication auth)
gets all tasks available for that specific group.TaskController.post(Task task, long groupId, Authentication auth)
post mapping for adding a task.Methods in edu.cnm.deepdive.teamassignments.controller with parameters of type TaskModifier and TypeMethodDescriptionTaskController.post(Task task, long groupId, Authentication auth)
post mapping for adding a task.TaskController.put(long groupId, long taskId, Task task, Authentication auth)
-
Uses of Task in edu.cnm.deepdive.teamassignments.model.dao
Methods in edu.cnm.deepdive.teamassignments.model.dao that return types with arguments of type TaskModifier and TypeMethodDescriptionTaskRepository.findAllByGroupAndCompletedAndConfirmedCompleteIsFalseOrderByDueDate(Group group, boolean completed)
TaskRepository.findAllByGroupAndCompletedAndDueDateAfterOrderByDueDateAsc(Group group, boolean completed, Date cutoff)
TaskRepository.findAllByGroupAndCompletedAndDueDateBeforeOrderByDueDateAsc(Group group, boolean completed, Date cutoff)
TaskRepository.findAllByGroupAndCompletedAndDueDateBetweenOrderByDueDateAsc(Group group, boolean completed, Date cutoffStart, Date cutoffEnd)
TaskRepository.findAllByGroupAndCompletedIsFalseAndDueDateBeforeOrderByDueDateAsc(Group group, Date cutoff)
TaskRepository.findAllByUserAndCompletedAndDueDateAfterOrderByDueDateAsc(User user, boolean completed, Date cutoff)
TaskRepository.findAllByUserAndCompletedAndDueDateBeforeOrderByDueDateAsc(User user, boolean completed, Date cutoff)
TaskRepository.findAllByUserAndCompletedAndDueDateBetweenOrderByDueDateAsc(User user, boolean completed, Date cutoffStart, Date cutoffEnd)
-
Uses of Task in edu.cnm.deepdive.teamassignments.model.entity
Methods in edu.cnm.deepdive.teamassignments.model.entity that return types with arguments of type Task -
Uses of Task in edu.cnm.deepdive.teamassignments.service
Methods in edu.cnm.deepdive.teamassignments.service that return types with arguments of type TaskModifier and TypeMethodDescriptionDelete a taskLook up tasks for a given user.This method will get a task by id.Save a new task.Methods in edu.cnm.deepdive.teamassignments.service with parameters of type Task