Package tv.hd3g.jobkit.mod.controller
Class JobKitStateController
- java.lang.Object
-
- tv.hd3g.jobkit.mod.controller.JobKitStateController
-
@RestController @RequestMapping(value="/v1/jobkit/state", produces="application/json;charset=UTF-8") public class JobKitStateController extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description JobKitStateController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<RegularProcessRunnerListDto>getConf()org.springframework.http.ResponseEntity<BackgroundServiceIdDto>getIds()org.springframework.http.ResponseEntity<JobKitEngineStatusDto>getLastStatus()
-
-
-
Method Detail
-
getLastStatus
@GetMapping("status") public org.springframework.http.ResponseEntity<JobKitEngineStatusDto> getLastStatus()
-
getConf
@GetMapping("conf") public org.springframework.http.ResponseEntity<RegularProcessRunnerListDto> getConf()
-
getIds
@GetMapping("ids") public org.springframework.http.ResponseEntity<BackgroundServiceIdDto> getIds()
-
-