@RestController
@RequestMapping(path="/v1/monitor",
produces="application/json")
public class MonitorController
extends Object
| Constructor and Description |
|---|
MonitorController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<?> |
getTaskCountByWorkbasketAndDaysInPastAndState(Long daysInPast,
List<pro.taskana.TaskState> states) |
org.springframework.http.ResponseEntity<?> |
getTaskcountForState(List<pro.taskana.TaskState> taskStates) |
@GetMapping(path="/countByState")
public org.springframework.http.ResponseEntity<?> getTaskcountForState(@RequestParam(value="states")
List<pro.taskana.TaskState> taskStates)
@GetMapping(path="/taskcountByWorkbasketDaysAndState")
public org.springframework.http.ResponseEntity<?> getTaskCountByWorkbasketAndDaysInPastAndState(@RequestParam(value="daysInPast")
Long daysInPast,
@RequestParam(value="states")
List<pro.taskana.TaskState> states)
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.