RoleController.java
1.96 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
69
70
71
72
73
74
75
76
package etunicorn.generated;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
/**
* No description
* (Generated with springmvc-raml-parser v.0.8.9)
*
*/
@RestController
@RequestMapping("/v1/role")
public interface RoleController {
/**
* Liste les rôles. Nécessite ROLE_ADMIN
*
*/
@RequestMapping(value = "", method = RequestMethod.GET)
public ResponseEntity<?> getRole();
/**
* Ajoute un nouveau rôle. Nécessite ROLE_ADMIN
*
*/
@RequestMapping(value = "", method = RequestMethod.POST)
public ResponseEntity<?> updateRole(
@RequestParam
String nom);
/**
* Supprime un rôle. Nécessite ROLE_ADMIN
*
*/
@RequestMapping(value = "/{nomRole}", method = RequestMethod.DELETE)
public ResponseEntity<?> deleteRoleById(
@PathVariable
String nomRole);
/**
* Ajoute une permission à un rôle. Nécessite ROLE_ADMIN
*
*/
@RequestMapping(value = "/{nomRole}", method = RequestMethod.POST)
public ResponseEntity<?> updateRoleById(
@PathVariable
String nomRole,
@RequestParam
String nom);
/**
* Enlève la permission du rôle. Nécessite ROLE_ADMIN
*
*/
@RequestMapping(value = "/{nomRole}/{nomPermission}", method = RequestMethod.DELETE)
public ResponseEntity<?> deleteRoleByNomPermission(
@PathVariable
String nomPermission,
@PathVariable
String nomRole);
/**
* Liste les permissions. Nécessite ROLE_ADMIN
*
*/
@RequestMapping(value = "/permission", method = RequestMethod.GET)
public ResponseEntity<?> getPermission();
}