diff options
author | Vitaly Takmazov | 2016-11-08 15:54:33 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-11-08 15:54:33 +0300 |
commit | 4314d834724bbb5c671e7300b7de865fe53c51fb (patch) | |
tree | adf95198a7db90a8cb6d2cdab90935af1e612ddc /juick-notifications/src/main/java/com/juick/components/controllers | |
parent | 397179619fdfa0b4b15f62437a91bd17924e7678 (diff) |
reorganize structure again
Diffstat (limited to 'juick-notifications/src/main/java/com/juick/components/controllers')
-rw-r--r-- | juick-notifications/src/main/java/com/juick/components/controllers/StatusController.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/juick-notifications/src/main/java/com/juick/components/controllers/StatusController.java b/juick-notifications/src/main/java/com/juick/components/controllers/StatusController.java new file mode 100644 index 00000000..50d73de6 --- /dev/null +++ b/juick-notifications/src/main/java/com/juick/components/controllers/StatusController.java @@ -0,0 +1,27 @@ +package com.juick.components.controllers; + +import com.juick.components.Notifications; +import com.juick.server.helpers.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 + Notifications 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); + } +} |