diff options
author | Vitaly Takmazov | 2018-06-15 20:10:18 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-06-15 20:10:18 +0300 |
commit | a704a2c99f38bb52db7364201c19f85d8d74cd25 (patch) | |
tree | 46ae462243c1fbe6cbbef3baaeb4f4fa07c82591 /juick-notifications/src/main/java/com/juick/components/controllers | |
parent | 74d0fe454d72fc7ad17d26fa20bb116af7c89f8c (diff) |
notifications: no need to start Tomcat
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 | 24 |
1 files changed, 0 insertions, 24 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 deleted file mode 100644 index 51b025eec..000000000 --- a/juick-notifications/src/main/java/com/juick/components/controllers/StatusController.java +++ /dev/null @@ -1,24 +0,0 @@ -package com.juick.components.controllers; - -import com.juick.Status; -import com.juick.components.Notifications; -import org.springframework.http.MediaType; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import javax.inject.Inject; - -/** - * Created by vitalyster on 24.10.2016. - */ -@RestController -public class StatusController { - @Inject - private Notifications push; - - @RequestMapping(method = RequestMethod.GET, value = "/", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) - public Status status() { - return push != null ? Status.OK : Status.FAIL; - } -} |