public interface TaskMonitorService
| Modifier and Type | Method and Description |
|---|---|
List<DueWorkbasketCounter> |
getTaskCountByWorkbasketAndDaysInPastAndState(long daysInPast,
List<TaskState> states)
Count all Tasks for all work basket objects where the due date is after "daysInPast" days from today in the past
and the tasks are in specified states.
|
List<TaskStateCounter> |
getTaskCountForState(List<TaskState> states)
This method counts all tasks with a given state.
|
long |
getTaskCountForWorkbasketByDaysInPastAndState(String workbasketId,
long daysInPast,
List<TaskState> states)
Count all Tasks in a given work basket where the due date is after "daysInPast" days from today in the past and
the tasks are in specified states.
|
List<TaskStateCounter> getTaskCountForState(List<TaskState> states)
states - the countable statesTaskStateCounter objects that specifies how many tasks in the specified states exist in
the available work basketslong getTaskCountForWorkbasketByDaysInPastAndState(String workbasketId, long daysInPast, List<TaskState> states)
List<DueWorkbasketCounter> getTaskCountByWorkbasketAndDaysInPastAndState(long daysInPast, List<TaskState> states)
daysInPast - identifies the days in the past from todaystates - List of TaskState objects that identifies the states of the tasks searchedDueWorkbasketCounter objects that specifies how many tasks in the requested states
with appropriate due date exist in the various work basketsCopyright © 2017. All rights reserved.