Package com.flowable.core.app.api
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>
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
org.flowable.common.engine.api.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 incidents with the given element id.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.rootScopeDefinitionId
(String rootScopeDefinitionId) Query for app incidents with the given root scope definition id.rootScopeDefinitionKey
(String rootScopeDefinitionKey) Query for app incidents with the given root scope definition key.rootScopeId
(String rootScopeId) Query for app incidents with the given root scope id.rootScopeType
(String rootScopeType) Query for app incidents with the given root scope type.scopeDefinitionId
(String scopeDefinitionId) Query for app incidents with the given scope definition id.scopeDefinitionKey
(String scopeDefinitionKey) Query for app incidents with the given scope definition key.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.Methods inherited from interface org.flowable.common.engine.api.query.DeleteQuery
delete, deleteWithRelatedData
Methods inherited from interface org.flowable.common.engine.api.query.Query
asc, count, desc, list, listPage, orderBy, orderBy, singleResult
-
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. -
rootScopeId
Query for app incidents with the given root scope id. -
rootScopeType
Query for app incidents with the given root scope type. -
rootScopeDefinitionId
Query for app incidents with the given root scope definition id. -
rootScopeDefinitionKey
Query for app incidents with the given root scope 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. -
elementId
Query for app incidents with the given element id. -
scopeDefinitionId
Query for app incidents with the given scope definition id. -
scopeDefinitionKey
Query for app incidents with the given scope definition key. -
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.
-