-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathTaskController.java
More file actions
68 lines (55 loc) · 2.18 KB
/
TaskController.java
File metadata and controls
68 lines (55 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.accenture.codingtest.springbootcodingtest.controller;
import java.util.List;
import java.util.Optional;
import java.util.UUID;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PatchMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import com.accenture.codingtest.springbootcodingtest.model.Task;
import com.accenture.codingtest.springbootcodingtest.model.Task;
import com.accenture.codingtest.springbootcodingtest.service.TaskService;
@Controller("/api/v1/tasks")
public class TaskController {
@Autowired
private TaskService taskService;
public TaskController(TaskService taskService) {
super();
this.taskService = taskService;
}
// GET retrieve all resources (ex. GET /api/v1/tasks)
@GetMapping
public List<Task> retrieveAllTasks() {
return taskService.findAll();
}
// GET retrieve one resource by id (ex. GET /api/v1/tasks/{task_id})
@GetMapping("/{task_id}")
public Optional<Task> getTaskById(@PathVariable("task_id") UUID id) {
return taskService.findById(id);
}
// POST create one resource (ex. POST /api/v1/tasks)
@PostMapping
private void createTask(@RequestBody Task task) {
taskService.createTask(task);
}
// PUT update one resource idempotent (ex. PUT /api/v1/tasks/{task_id})
@PutMapping("/{task_id}")
private void updateTask(@RequestBody Task task, @PathVariable("task_id") UUID id) {
taskService.updateTask(task, id);
}
// PATCH update one resource (ex. PATCH /api/v1/tasks/{task_id})
@PatchMapping("/{task_id}")
private void patchTask(@RequestBody Task task, @PathVariable("task_id") UUID id) {
taskService.patchTask(task, id);
}
// DELETE remove one resource (ex. DELETE /api/v1/tasks/{task_id})
@DeleteMapping("/{task_id}")
private void deleteTask(@PathVariable("task_id") UUID id) {
taskService.deleteTask(id);
}
}