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