Interface AppIncidentQuery

All Superinterfaces:
org.flowable.common.engine.api.query.DeleteQuery<AppIncidentQuery,AppIncident>, org.flowable.common.engine.api.query.Query<AppIncidentQuery,AppIncident>
All Known Implementing Classes:
AppIncidentQueryImpl

public interface AppIncidentQuery extends org.flowable.common.engine.api.query.Query<AppIncidentQuery,AppIncident>, org.flowable.common.engine.api.query.DeleteQuery<AppIncidentQuery,AppIncident>
  • Method Details

    • id

      Query for app incident with the given id.
    • type

      Query for app incidents with the given type.
    • subType

      AppIncidentQuery subType(String subType)
      Query for app incidents with the given sub type.
    • appDefinitionKey

      AppIncidentQuery appDefinitionKey(String appDefinitionKey)
      Query for app incidents with the given app definition key.
    • rootScopeId

      AppIncidentQuery rootScopeId(String rootScopeId)
      Query for app incidents with the given root scope id.
    • rootScopeType

      AppIncidentQuery rootScopeType(String rootScopeType)
      Query for app incidents with the given root scope type.
    • rootScopeDefinitionId

      AppIncidentQuery rootScopeDefinitionId(String rootScopeDefinitionId)
      Query for app incidents with the given root scope definition id.
    • rootScopeDefinitionKey

      AppIncidentQuery rootScopeDefinitionKey(String rootScopeDefinitionKey)
      Query for app incidents with the given root scope definition key.
    • scopeId

      AppIncidentQuery scopeId(String scopeId)
      Query for app incidents with the given scope id.
    • subScopeId

      AppIncidentQuery subScopeId(String subScopeId)
      Query for app incidents with the given sub scope id.
    • scopeType

      AppIncidentQuery scopeType(String scopeType)
      Query for app incidents with the given scope type.
    • elementId

      AppIncidentQuery elementId(String elementId)
      Query for app incidents with the given element id.
    • scopeDefinitionId

      AppIncidentQuery scopeDefinitionId(String scopeDefinitionId)
      Query for app incidents with the given scope definition id.
    • scopeDefinitionKey

      AppIncidentQuery scopeDefinitionKey(String scopeDefinitionKey)
      Query for app incidents with the given scope definition key.
    • createdBefore

      AppIncidentQuery createdBefore(Date createdBefore)
      Query for app incidents with a creation time before the give date.
    • createdAfter

      AppIncidentQuery createdAfter(Date createdAfter)
      Query for app incidents with a creation time after the give date.
    • tenantId

      AppIncidentQuery tenantId(String tenantId)
      Query for app variables with the given tenant id.
    • tenantIdLike

      AppIncidentQuery tenantIdLike(String tenantIdLike)
      Query for app variables like the given tenant id.
    • withoutTenantId

      AppIncidentQuery withoutTenantId()
      Query for app variables without a tenant id.
    • orderByCreateTime

      AppIncidentQuery orderByCreateTime()
      Order the result by incident create time.
    • orderByIncidentType

      AppIncidentQuery orderByIncidentType()
      Order the result by incident type.
    • orderByIncidentSubType

      AppIncidentQuery orderByIncidentSubType()
      Order the result by incident sub type.