From f2789e9891751e913c951dcaf1f215788306dfc3 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Mon, 24 Oct 2016 16:35:28 +0300 Subject: push component -> juick-notifications project --- .../controllers/StatusController.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 juick-notifications/src/main/java/com/juick/notifications/controllers/StatusController.java (limited to 'juick-notifications/src/main/java/com/juick/notifications/controllers') diff --git a/juick-notifications/src/main/java/com/juick/notifications/controllers/StatusController.java b/juick-notifications/src/main/java/com/juick/notifications/controllers/StatusController.java new file mode 100644 index 00000000..41f44a35 --- /dev/null +++ b/juick-notifications/src/main/java/com/juick/notifications/controllers/StatusController.java @@ -0,0 +1,27 @@ +package com.juick.notifications.controllers; + +import com.juick.notifications.CloudNotifications; +import com.juick.notifications.api.Status; +import org.springframework.http.MediaType; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.ResponseBody; + +import javax.inject.Inject; + +/** + * Created by vitalyster on 24.10.2016. + */ +@Controller +@ResponseBody +public class StatusController { + @Inject + CloudNotifications push; + + @RequestMapping(method = RequestMethod.GET, value = "/", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) + public Status status() { + String status = push != null ? "OK" : "Fail"; + return new Status(status); + } +} -- cgit v1.2.3