Commit 6b23f1cac19509cb997ba1fb748b7c8a3e3a0063

Authored by Geoffrey PREUD'HOMME
1 parent 7398996f

Correction /consommation bis

src/main/java/etunicorn/controller/PersonneController.java
@@ -17,7 +17,6 @@ import org.springframework.web.bind.annotation.RequestBody; @@ -17,7 +17,6 @@ import org.springframework.web.bind.annotation.RequestBody;
17 import org.springframework.web.bind.annotation.RestController; 17 import org.springframework.web.bind.annotation.RestController;
18 18
19 import javax.validation.Valid; 19 import javax.validation.Valid;
20 -import java.math.BigDecimal;  
21 import java.text.ParseException; 20 import java.text.ParseException;
22 import java.text.SimpleDateFormat; 21 import java.text.SimpleDateFormat;
23 import java.util.LinkedHashMap; 22 import java.util.LinkedHashMap;
@@ -101,7 +100,7 @@ public class PersonneController extends BaseController implements etunicorn.gene @@ -101,7 +100,7 @@ public class PersonneController extends BaseController implements etunicorn.gene
101 100
102 @Override 101 @Override
103 @RestrictedTo("PERSONNE_GET") 102 @RestrictedTo("PERSONNE_GET")
104 - public ResponseEntity<?> getPersonneById(@PathVariable BigDecimal idPersonne) { 103 + public ResponseEntity<?> getPersonneById(@PathVariable Long idPersonne) {
105 Personne personne = personneRepository.findById(idPersonne.intValue()); 104 Personne personne = personneRepository.findById(idPersonne.intValue());
106 if (personne == null) { 105 if (personne == null) {
107 return new ResponseEntity<Object>(HttpStatus.NOT_FOUND); 106 return new ResponseEntity<Object>(HttpStatus.NOT_FOUND);
@@ -111,7 +110,7 @@ public class PersonneController extends BaseController implements etunicorn.gene @@ -111,7 +110,7 @@ public class PersonneController extends BaseController implements etunicorn.gene
111 110
112 @Override 111 @Override
113 @RestrictedTo("PERSONNE_EDIT") 112 @RestrictedTo("PERSONNE_EDIT")
114 - public ResponseEntity<?> updatePersonneById(@PathVariable BigDecimal idPersonne, @Valid @RequestBody UpdatePersonneByIdRequest updatePersonneByIdRequest) { 113 + public ResponseEntity<?> updatePersonneById(@PathVariable Long idPersonne, @Valid @RequestBody UpdatePersonneByIdRequest updatePersonneByIdRequest) {
115 Personne personne = personneRepository.findById(idPersonne.intValue()); 114 Personne personne = personneRepository.findById(idPersonne.intValue());
116 if (personne == null) { 115 if (personne == null) {
117 return generateError(HttpStatus.NOT_FOUND, "Personne introuvable"); 116 return generateError(HttpStatus.NOT_FOUND, "Personne introuvable");
@@ -126,7 +125,7 @@ public class PersonneController extends BaseController implements etunicorn.gene @@ -126,7 +125,7 @@ public class PersonneController extends BaseController implements etunicorn.gene
126 125
127 @Override 126 @Override
128 @RestrictedTo("PERSONNE_REMOVE") 127 @RestrictedTo("PERSONNE_REMOVE")
129 - public ResponseEntity<?> deletePersonneById(@PathVariable BigDecimal idPersonne) { 128 + public ResponseEntity<?> deletePersonneById(@PathVariable Long idPersonne) {
130 Personne personne = personneRepository.findById(idPersonne.intValue()); 129 Personne personne = personneRepository.findById(idPersonne.intValue());
131 130
132 if (personne == null) { 131 if (personne == null) {
@@ -137,7 +136,7 @@ public class PersonneController extends BaseController implements etunicorn.gene @@ -137,7 +136,7 @@ public class PersonneController extends BaseController implements etunicorn.gene
137 } 136 }
138 137
139 @Override 138 @Override
140 - public ResponseEntity<?> updateVirer(@PathVariable BigDecimal idPersonne, @Valid @RequestBody UpdateVirerRequest updateVirerRequest) { 139 + public ResponseEntity<?> updateVirer(@PathVariable Long idPersonne, @Valid @RequestBody UpdateVirerRequest updateVirerRequest) {
141 return null; 140 return null;
142 } 141 }
143 } 142 }