renamed the helper class

This commit is contained in:
Michael 2019-05-03 18:48:02 +02:00
parent 3cc9fd5597
commit c86ce22d27
2 changed files with 7 additions and 1 deletions

View File

@ -971,6 +971,12 @@ public class Controller {
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)")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Database error"),

View File

@ -1,6 +1,6 @@
package hhn.labsw.bugageocaching.helper;
public class StationPOI {
public class POI {
private String Name;
private float Latitude;