diff --git a/src/main/java/de/thm/arsnova/controller/FoodVoteController.java b/src/main/java/de/thm/arsnova/controller/FoodVoteController.java index 592822dc04837cd844e27d01a7340f7ae0971e38..0f2772d183829e4df8b18a75a32676404533c28a 100644 --- a/src/main/java/de/thm/arsnova/controller/FoodVoteController.java +++ b/src/main/java/de/thm/arsnova/controller/FoodVoteController.java @@ -60,10 +60,10 @@ public class FoodVoteController extends AbstractController { return foodService.getFoodVote(); } - @RequestMapping(value = "/canteen/menu/vote/count", method = RequestMethod.GET) + @RequestMapping(value = "/canteen/menu/vote/count", method = RequestMethod.GET, produces = "text/plain") @ResponseBody - public final int getFoodVoteCount() { - return foodService.getFoodVoteCount(); + public final String getFoodVoteCount() { + return Integer.toString(foodService.getFoodVoteCount()); } diff --git a/src/main/java/de/thm/arsnova/controller/StatisticsController.java b/src/main/java/de/thm/arsnova/controller/StatisticsController.java index 999652151796dd626a487f29e1b10560c1a9629c..e6da103370dc519c389a6f48802c6c500f1c6006 100644 --- a/src/main/java/de/thm/arsnova/controller/StatisticsController.java +++ b/src/main/java/de/thm/arsnova/controller/StatisticsController.java @@ -21,16 +21,16 @@ public class StatisticsController { return statisticsService.getStatistics(); } - @RequestMapping(method = RequestMethod.GET, value = "/statistics/activeusercount") + @RequestMapping(method = RequestMethod.GET, value = "/statistics/activeusercount", produces = "text/plain") @ResponseBody - public final int countActiveUsers() { - return statisticsService.countActiveUsers(); + public final String countActiveUsers() { + return Integer.toString(statisticsService.countActiveUsers()); } - @RequestMapping(method = RequestMethod.GET, value = "/statistics/sessioncount") + @RequestMapping(method = RequestMethod.GET, value = "/statistics/sessioncount", produces = "text/plain") @ResponseBody - public final int countSessions() { - return statisticsService.getStatistics().getOpenSessions() - + statisticsService.getStatistics().getClosedSessions(); + public final String countSessions() { + return Integer.toString(statisticsService.getStatistics().getOpenSessions() + + statisticsService.getStatistics().getClosedSessions()); } }