-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppInfoController.java
More file actions
51 lines (41 loc) · 1.44 KB
/
AppInfoController.java
File metadata and controls
51 lines (41 loc) · 1.44 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
package com.showcase.backend.controller;
import com.showcase.backend.domain.AppInfo;
import com.showcase.backend.service.AppInfoService;
import java.util.List;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
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 org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping(AppInfoController.ENDPOINT_URL)
public class AppInfoController {
public static final String ENDPOINT_URL = "/appinfo";
private final AppInfoService service;
public AppInfoController(AppInfoService service) {
this.service = service;
}
@GetMapping
public List<AppInfo> findAll() {
return service.findAll();
}
@GetMapping("/{id}")
public AppInfo find(@PathVariable Long id) {
return service.find(id);
}
@PostMapping
public AppInfo save(@RequestBody AppInfo appInfo) {
return service.save(appInfo);
}
@PutMapping("/{id}")
public AppInfo update(@PathVariable Long id, @RequestBody AppInfo appInfo) {
return service.update(id, appInfo);
}
@DeleteMapping("/{id}")
public void delete(@PathVariable Long id) {
service.delete(id);
}
}