Package com.flowable.core.app.api
Interface AppIncidentQuery
-
- All Superinterfaces:
Query<AppIncidentQuery,AppIncident>
- All Known Implementing Classes:
AppIncidentQueryImpl
public interface AppIncidentQuery extends Query<AppIncidentQuery,AppIncident>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AppIncidentQuery
appDefinitionKey(String appDefinitionKey)
Query for app incidents with the given app definition key.AppIncidentQuery
createdAfter(Date createdAfter)
Query for app incidents with a creation time after the give date.AppIncidentQuery
createdBefore(Date createdBefore)
Query for app incidents with a creation time before the give date.AppIncidentQuery
id(String id)
Query for app incident with the given id.AppIncidentQuery
orderByCreateTime()
Order the result by incident create time.AppIncidentQuery
orderByIncidentSubType()
Order the result by incident sub type.AppIncidentQuery
orderByIncidentType()
Order the result by incident type.AppIncidentQuery
scopeDefinitionId(String scopeDefinitionId)
Query for app incidents with the given scope definition id.AppIncidentQuery
scopeId(String scopeId)
Query for app incidents with the given scope id.AppIncidentQuery
scopeType(String scopeType)
Query for app incidents with the given scope type.AppIncidentQuery
subScopeId(String subScopeId)
Query for app incidents with the given sub scope id.AppIncidentQuery
subType(String subType)
Query for app incidents with the given sub type.AppIncidentQuery
tenantId(String tenantId)
Query for app variables with the given tenant id.AppIncidentQuery
tenantIdLike(String tenantIdLike)
Query for app variables like the given tenant id.AppIncidentQuery
type(String type)
Query for app incidents with the given type.AppIncidentQuery
withoutTenantId()
Query for app variables without a tenant id.
-
-
-
Method Detail
-
id
AppIncidentQuery id(String id)
Query for app incident with the given id.
-
type
AppIncidentQuery type(String 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.
-
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.
-
scopeDefinitionId
AppIncidentQuery scopeDefinitionId(String scopeDefinitionId)
Query for app incidents with the given scope definition id.
-
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.
-
-