Package com.flowable.audit.api.runtime
Interface AuditInstanceQuery
- All Superinterfaces:
Query<AuditInstanceQuery,
AuditInstance>
- All Known Implementing Classes:
AuditInstanceQueryImpl
A query builder to query for
AuditInstance
.- Author:
- Micha Kiener
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptionauditDefinitionId
(String auditDefinitionId) Only select audit instances with the given audit definition id.auditDefinitionIdLike
(String auditDefinitionIdLike) Only select audit instances with an audit definition id like the given string.createdAfter
(Date createdAfter) createdBefore
(Date createdBefore) Select audit instances using a given creatorId.externalId
(String externalId) Only select audit instances with the given external id.Only select audit instances with the given id.Only select audit instances with the given ids.Order by creation time (needs to be followed byQuery.asc()
orQuery.desc()
).Order by subType (needs to be followed byQuery.asc()
orQuery.desc()
).Order by subType (needs to be followed byQuery.asc()
orQuery.desc()
).Order by type (needs to be followed byQuery.asc()
orQuery.desc()
).scopeDefinitionId
(String scopeDefinitionId) Only select audit instances with the given scope definition id.Only select audit instances with the given scope id.Only select audit instances with the given scope type.searchText
(String searchText) Only select audit instances which match the search text, which are matched agains the type and subtype.subScopeId
(String subScopeId) Only select audit instances with the given sub scope id.Only select audit instances with the given sub type.Only select audit instances that have the given tenant id.tenantIdLike
(String tenantIdLike) Only select audit instances with a tenant id like the given one.Only select audit instances with the given type.Only select audit instances that do not have a tenant id.
-
Method Details
-
id
Only select audit instances with the given id. -
ids
Only select audit instances with the given ids. -
auditDefinitionId
Only select audit instances with the given audit definition id. -
auditDefinitionIdLike
Only select audit instances with an audit definition id like the given string. -
scopeId
Only select audit instances with the given scope id. -
subScopeId
Only select audit instances with the given sub scope id. -
scopeType
Only select audit instances with the given scope type. -
scopeDefinitionId
Only select audit instances with the given scope definition id. -
externalId
Only select audit instances with the given external id. -
type
Only select audit instances with the given type. -
subType
Only select audit instances with the given sub type. -
searchText
Only select audit instances which match the search text, which are matched agains the type and subtype. The fields in which is searched can change in future releases. -
createdBefore
-
createdAfter
-
tenantId
Only select audit instances that have the given tenant id. -
tenantIdLike
Only select audit instances with a tenant id like the given one. -
withoutTenantId
AuditInstanceQuery withoutTenantId()Only select audit instances that do not have a tenant id. -
creatorId
Select audit instances using a given creatorId. -
orderByCreationTime
AuditInstanceQuery orderByCreationTime()Order by creation time (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByType
AuditInstanceQuery orderByType()Order by type (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderBySubType
AuditInstanceQuery orderBySubType()Order by subType (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByExternalId
AuditInstanceQuery orderByExternalId()Order by subType (needs to be followed byQuery.asc()
orQuery.desc()
). -
getAuditInstanceTypeInformation
AuditInstanceTypeInformation getAuditInstanceTypeInformation()
-