Class ExecutionFilterParameterBean
- java.lang.Object
-
- com.gentics.contentnode.rest.resource.parameter.ExecutionFilterParameterBean
-
public class ExecutionFilterParameterBean extends Object
Scheduler execution filter parameter bean
-
-
Field Summary
Fields Modifier and Type Field Description Boolean
failed
Filter for result status.Integer
timestampMax
Filter for maximum starting time.Integer
timestampMin
Filter for minimum starting time.
-
Constructor Summary
Constructors Constructor Description ExecutionFilterParameterBean()
-
-
-
Field Detail
-
failed
@QueryParam("failed") public Boolean failed
Filter for result status.If set to
true
, only failed executions will be returned. If set tofalse
, only successful executions will be returned (include executions that were not yet executed). If not set (default), all jobs will be returned.
-
timestampMin
@QueryParam("ts_min") public Integer timestampMin
Filter for minimum starting time.Only executions which have been started after the given timestamp will be returned.
-
timestampMax
@QueryParam("ts_max") public Integer timestampMax
Filter for maximum starting time.Only executions which have been started before the given timestamp will be returned.
Note that if
timestampMax
is less thantimestampMin
it will be ignored.
-
-