Interface SuspendedJobQuery

    • Method Detail

      • jobId

        SuspendedJobQuery jobId​(java.lang.String jobId)
        Only select jobs with the given id
      • processInstanceId

        SuspendedJobQuery processInstanceId​(java.lang.String processInstanceId)
        Only select jobs which exist for the given process instance.
      • executionId

        SuspendedJobQuery executionId​(java.lang.String executionId)
        Only select jobs which exist for the given execution
      • processDefinitionId

        SuspendedJobQuery processDefinitionId​(java.lang.String processDefinitionid)
        Only select jobs which exist for the given process definition id
      • withRetriesLeft

        SuspendedJobQuery withRetriesLeft()
        Only select jobs which have retries left
      • noRetriesLeft

        SuspendedJobQuery noRetriesLeft()
        Only select jobs which have no retries left
      • executable

        SuspendedJobQuery executable()
        Only select jobs which are executable, ie. retries > 0 and duedate is null or duedate is in the past
      • duedateLowerThan

        SuspendedJobQuery duedateLowerThan​(java.util.Date date)
        Only select jobs where the duedate is lower than the given date.
      • duedateHigherThan

        SuspendedJobQuery duedateHigherThan​(java.util.Date date)
        Only select jobs where the duedate is higher then the given date.
      • withException

        SuspendedJobQuery withException()
        Only select jobs that failed due to an exception.
      • exceptionMessage

        SuspendedJobQuery exceptionMessage​(java.lang.String exceptionMessage)
        Only select jobs that failed due to an exception with the given message.
      • jobTenantId

        SuspendedJobQuery jobTenantId​(java.lang.String tenantId)
        Only select jobs that have the given tenant id.
      • jobTenantIdLike

        SuspendedJobQuery jobTenantIdLike​(java.lang.String tenantIdLike)
        Only select jobs with a tenant id like the given one.
      • jobWithoutTenantId

        SuspendedJobQuery jobWithoutTenantId()
        Only select jobs that do not have a tenant id.