renamed the helper class
This commit is contained in:
parent
3cc9fd5597
commit
c86ce22d27
@ -971,6 +971,12 @@ public class Controller {
|
|||||||
return ResponseEntity.status(200).body(userRepository.getRankingPlaceFromUser(user.getUsername()));
|
return ResponseEntity.status(200).body(userRepository.getRankingPlaceFromUser(user.getUsername()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@CrossOrigin(origins = "http://localhost:8081") // only for dev purpose
|
||||||
|
// @RequestMapping(value = "/api/getRankingPlace", method = RequestMethod.GET, produces = "application/json")
|
||||||
|
public ResponseEntity getMyMap() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@ApiOperation(value = "Test method (Changes its purpose often)")
|
@ApiOperation(value = "Test method (Changes its purpose often)")
|
||||||
@ApiResponses(value = {
|
@ApiResponses(value = {
|
||||||
@ApiResponse(code = 404, message = "Database error"),
|
@ApiResponse(code = 404, message = "Database error"),
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
package hhn.labsw.bugageocaching.helper;
|
package hhn.labsw.bugageocaching.helper;
|
||||||
|
|
||||||
public class StationPOI {
|
public class POI {
|
||||||
|
|
||||||
private String Name;
|
private String Name;
|
||||||
private float Latitude;
|
private float Latitude;
|
||||||
Loading…
Reference in New Issue
Block a user