Class ExecutionFilterParameterBean


  • public class ExecutionFilterParameterBean
    extends Object
    Scheduler execution filter parameter bean
    • Field Detail

      • failed

        @QueryParam("failed")
        public Boolean failed
        Filter for result status.

        If set to true, only failed executions will be returned. If set to false, 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 than timestampMin it will be ignored.

    • Constructor Detail

      • ExecutionFilterParameterBean

        public ExecutionFilterParameterBean()