long-runner
Toggle table of contents
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
long-runner
tasks-controller
/
org.artofdev.tasks.controller
/
TasksRestController
/
getTasks
get
Tasks
@
GetMapping
(
value
=
[
"/tasks"
]
)
fun
getTasks
(
@
RequestHeader
headers
:
HttpHeaders
,
@
RequestParam
(
value
=
"runningStatus"
,
required
=
false
)
runningStatuses
:
List
<
Task.RunningStatus
>
?
,
@
RequestParam
(
value
=
"taskTypeHid"
,
required
=
false
)
taskTypeHids
:
List
<
String
>
?
,
@
RequestParam
(
value
=
"taskTypeCategory"
,
required
=
false
)
taskTypeCategory
:
TaskTypeCategory
?
,
@
RequestParam
(
value
=
"extId"
,
required
=
false
)
extId
:
String
?
,
@
RequestParam
(
value
=
"pipelineTaskId"
,
required
=
false
)
pipelineTaskId
:
Long
?
,
@
PageableDefault
(
size
=
100
,
sort
=
[
"id"
]
,
direction
=
Sort.Direction.ASC
)
pageable
:
Pageable
)
:
Page
<
TaskWithProgress
>