Interface HistoricJobLogQuery

    • Method Detail

      • logId

        HistoricJobLogQuery logId​(java.lang.String logId)
        Only select historic job log entries with the id.
      • jobId

        HistoricJobLogQuery jobId​(java.lang.String jobId)
        Only select historic job log entries with the given job id.
      • jobExceptionMessage

        HistoricJobLogQuery jobExceptionMessage​(java.lang.String exceptionMessage)
        Only select historic job log entries with the given exception message.
      • jobDefinitionId

        HistoricJobLogQuery jobDefinitionId​(java.lang.String jobDefinitionId)
        Only select historic job log entries with the given job definition id.
      • jobDefinitionType

        HistoricJobLogQuery jobDefinitionType​(java.lang.String jobDefinitionType)
        Only select historic job log entries with the given job definition type.
      • jobDefinitionConfiguration

        HistoricJobLogQuery jobDefinitionConfiguration​(java.lang.String jobDefinitionConfiguration)
        Only select historic job log entries with the given job definition configuration type.
      • activityIdIn

        HistoricJobLogQuery activityIdIn​(java.lang.String... activityIds)
        Only select historic job log entries which are associated with one of the given activity ids.
      • failedActivityIdIn

        HistoricJobLogQuery failedActivityIdIn​(java.lang.String... activityIds)
        Only select historic job log entries which are associated with failures of one of the given activity ids.
      • executionIdIn

        HistoricJobLogQuery executionIdIn​(java.lang.String... executionIds)
        Only select historic job log entries which are associated with one of the given execution ids.
      • processInstanceId

        HistoricJobLogQuery processInstanceId​(java.lang.String processInstanceId)
        Only select historic job log entries with the process instance id.
      • processDefinitionId

        HistoricJobLogQuery processDefinitionId​(java.lang.String processDefinitionId)
        Only select historic job log entries with the process definition id.
      • processDefinitionKey

        HistoricJobLogQuery processDefinitionKey​(java.lang.String processDefinitionKey)
        Only select historic job log entries with the process instance key.
      • deploymentId

        HistoricJobLogQuery deploymentId​(java.lang.String deploymentId)
        Only select historic job log entries with the deployment id.
      • tenantIdIn

        HistoricJobLogQuery tenantIdIn​(java.lang.String... tenantIds)
        Only select historic job log entries that belong to one of the given tenant ids.
      • withoutTenantId

        HistoricJobLogQuery withoutTenantId()
        Only selects historic job log entries that have no tenant id.
      • hostname

        HistoricJobLogQuery hostname​(java.lang.String hostname)
        Only selects historic job log entries that belong to the given host name.
      • jobPriorityHigherThanOrEquals

        HistoricJobLogQuery jobPriorityHigherThanOrEquals​(long priority)
        Only select log entries where the job had a priority higher than or equal to the given priority.
        Since:
        7.4
      • jobPriorityLowerThanOrEquals

        HistoricJobLogQuery jobPriorityLowerThanOrEquals​(long priority)
        Only select log entries where the job had a priority lower than or equal to the given priority.
        Since:
        7.4
      • successLog

        HistoricJobLogQuery successLog()
        Only select historic job logs which belongs to a successful executed job.
      • orderByTenantId

        HistoricJobLogQuery orderByTenantId()
        Order by tenant id (needs to be followed by Query.asc() or Query.desc()). Note that the ordering of job log entries without tenant id is database-specific.
      • orderByHostname

        HistoricJobLogQuery orderByHostname()
        Order by hostname (needs to be followed by Query.asc() or Query.desc()). Note that the ordering of job log entries without hostname is database-specific.