0e498f62
Geoffrey PREUD'HOMME
Consomation → Con...
|
1
2
3
|
package etunicorn.generated;
|
6ae819f3
badetitou
Go to JSON
|
4
5
|
import etunicorn.generated.model.UpdateConsommationByIdRequest;
import etunicorn.generated.model.UpdateConsommationRequest;
|
0e498f62
Geoffrey PREUD'HOMME
Consomation → Con...
|
6
7
8
9
|
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;
|
0e498f62
Geoffrey PREUD'HOMME
Consomation → Con...
|
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
|
import org.springframework.web.bind.annotation.RestController;
/**
* No description
* (Generated with springmvc-raml-parser v.0.8.9)
*
*/
@RestController
@RequestMapping("/v1/consommation")
public interface ConsommationController {
/**
* Obtenir la liste de toutes les consommations. Nécessite CONSO_ADMIN ou CONSO_ACHETER ou CONSO_REMBOURSER
*
*/
@RequestMapping(value = "", method = RequestMethod.GET)
public ResponseEntity<?> getConsommation();
/**
* Permet de creer une nouvelle consommation. Nécessite CONSO_ADMIN
*
*/
@RequestMapping(value = "", method = RequestMethod.POST)
public ResponseEntity<?> updateConsommation(
|
6ae819f3
badetitou
Go to JSON
|
36
37
38
|
@javax.validation.Valid
@org.springframework.web.bind.annotation.RequestBody
UpdateConsommationRequest updateConsommationRequest);
|
0e498f62
Geoffrey PREUD'HOMME
Consomation → Con...
|
39
40
41
42
43
44
45
46
|
/**
* Permet de modifier une consommation. Nécessite CONSO_ADMIN
*
*/
@RequestMapping(value = "/{consommationId}", method = RequestMethod.PUT)
public ResponseEntity<?> updateConsommationById(
@PathVariable
|
6ae819f3
badetitou
Go to JSON
|
47
48
49
50
|
Long consommationId,
@javax.validation.Valid
@org.springframework.web.bind.annotation.RequestBody
UpdateConsommationByIdRequest updateConsommationByIdRequest);
|
0e498f62
Geoffrey PREUD'HOMME
Consomation → Con...
|
51
52
53
54
55
56
57
58
|
/**
* Obtenir la consommation {consommationId}. Nécessite CONSO_ADMIN ou CONSO_ACHETER ou CONSO_REMBOURSER
*
*/
@RequestMapping(value = "/{consommationId}", method = RequestMethod.GET)
public ResponseEntity<?> getConsommationById(
@PathVariable
|
6ae819f3
badetitou
Go to JSON
|
59
|
Long consommationId);
|
0e498f62
Geoffrey PREUD'HOMME
Consomation → Con...
|
60
61
62
63
64
65
66
67
|
/**
* Permet de supprimer la consommation {consommationId}. Nécessite CONSO_ADMIN
*
*/
@RequestMapping(value = "/{consommationId}", method = RequestMethod.DELETE)
public ResponseEntity<?> deleteConsommationById(
@PathVariable
|
6ae819f3
badetitou
Go to JSON
|
68
|
Long consommationId);
|
0e498f62
Geoffrey PREUD'HOMME
Consomation → Con...
|
69
70
|
}
|