Interface JobDefinitionQuery

    • Method Detail

      • jobDefinitionId

        JobDefinitionQuery jobDefinitionId​(java.lang.String jobDefinitionId)
        Only select job definitions with the given id
      • activityIdIn

        JobDefinitionQuery activityIdIn​(java.lang.String... activityIds)
        Only select job definitions which exist for the listed activity ids
      • processDefinitionId

        JobDefinitionQuery processDefinitionId​(java.lang.String processDefinitionId)
        Only select job definitions which exist for the given process definition id.
      • processDefinitionKey

        JobDefinitionQuery processDefinitionKey​(java.lang.String processDefinitionKey)
        Only select job definitions which exist for the given process definition key.
      • jobType

        JobDefinitionQuery jobType​(java.lang.String jobType)
        Only select job definitions which have the given job type.
      • jobConfiguration

        JobDefinitionQuery jobConfiguration​(java.lang.String jobConfiguration)
        Only select job definitions which contain the configuration.
      • suspended

        JobDefinitionQuery suspended()
        Only selects job definitions which are suspended
      • withOverridingJobPriority

        JobDefinitionQuery withOverridingJobPriority()
        Only selects job definitions which have a job priority defined.
        Since:
        7.4
      • tenantIdIn

        JobDefinitionQuery tenantIdIn​(java.lang.String... tenantIds)
        Only select job definitions that belong to one of the given tenant ids.
      • withoutTenantId

        JobDefinitionQuery withoutTenantId()
        Only select job definitions which have no tenant id.
      • includeJobDefinitionsWithoutTenantId

        JobDefinitionQuery includeJobDefinitionsWithoutTenantId()
        Select job definitions which have no tenant id. Can be used in combination with tenantIdIn(String...).
      • orderByTenantId

        JobDefinitionQuery orderByTenantId()
        Order by tenant id (needs to be followed by Query.asc() or Query.desc()). Note that the ordering of job definitions without tenant id is database-specific.