d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
1
2
3
|
package etunicorn.generated;
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
4
|
import java.math.BigDecimal;
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
5
6
7
8
9
10
|
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;
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
11
12
13
14
15
|
/**
* No description
* (Generated with springmvc-raml-parser v.0.8.9)
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
16
|
*
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
17
18
19
20
21
22
23
24
|
*/
@RestController
@RequestMapping("/v1/consomation")
public interface ConsomationController {
/**
* Obtenir la liste de toutes les consomations. Nécessite CONSO_ADMIN ou CONSO_ACHETER ou CONSO_REMBOURSER
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
25
|
*
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
26
27
28
29
30
31
|
*/
@RequestMapping(value = "", method = RequestMethod.GET)
public ResponseEntity<?> getConsomation();
/**
* Permet de creer une nouvelle consomation. Nécessite CONSO_ADMIN
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
32
|
*
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
33
34
35
|
*/
@RequestMapping(value = "", method = RequestMethod.POST)
public ResponseEntity<?> updateConsomation(
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
36
37
38
39
|
@RequestParam
String nomConsomation,
@RequestParam
BigDecimal prix);
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
40
41
42
|
/**
* Permet de modifier une consommation. Nécessite CONSO_ADMIN
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
43
|
*
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
44
45
46
|
*/
@RequestMapping(value = "/{consomationId}", method = RequestMethod.PUT)
public ResponseEntity<?> updateConsomationById(
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
47
48
49
50
51
52
|
@PathVariable
String consomationId,
@RequestParam(required = false)
String nomEvenement,
@RequestParam(required = false)
BigDecimal prix);
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
53
54
55
|
/**
* Obtenir la Consomation {consomationId}. Nécessite CONSO_ADMIN ou CONSO_ACHETER ou CONSO_REMBOURSER
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
56
|
*
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
57
58
59
|
*/
@RequestMapping(value = "/{consomationId}", method = RequestMethod.GET)
public ResponseEntity<?> getConsomationById(
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
60
61
|
@PathVariable
String consomationId);
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
62
63
64
|
/**
* Permet de supprimer la consomation {consomationId}. Nécessite CONSO_ADMIN
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
65
|
*
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
66
67
68
|
*/
@RequestMapping(value = "/{consomationId}", method = RequestMethod.DELETE)
public ResponseEntity<?> deleteConsomationById(
|
790d94b4
Geoffrey PREUD'HOMME
Base de données, ...
|
69
70
|
@PathVariable
String consomationId);
|
d167a387
Geoffrey PREUD'HOMME
On génère mieux
|
71
72
|
}
|