Package com.flowable.audit.api.runtime
Interface AuditInstanceQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<AuditInstanceQuery,AuditInstance>
- All Known Implementing Classes:
AuditInstanceQueryImpl
public interface AuditInstanceQuery extends org.flowable.common.engine.api.query.Query<AuditInstanceQuery,AuditInstance>
A query builder to query for
AuditInstance
.- Author:
- Micha Kiener
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description AuditInstanceQuery
auditDefinitionId(java.lang.String auditDefinitionId)
Only select audit instances with the given audit definition id.AuditInstanceQuery
auditDefinitionIdLike(java.lang.String auditDefinitionIdLike)
Only select audit instances with an audit definition id like the given string.AuditInstanceQuery
createdAfter(java.util.Date createdAfter)
AuditInstanceQuery
createdBefore(java.util.Date createdBefore)
AuditInstanceQuery
creatorId(java.lang.String creatorId)
Select audit instances using a given creatorId.AuditInstanceQuery
externalId(java.lang.String externalId)
Only select audit instances with the given external id.AuditInstanceQuery
id(java.lang.String id)
Only select audit instances with the given id.AuditInstanceQuery
ids(java.util.Set<java.lang.String> ids)
Only select audit instances with the given ids.AuditInstanceQuery
orderByCreationTime()
Order by start date (needs to be followed byQuery.asc()
orQuery.desc()
).AuditInstanceQuery
scopeDefinitionId(java.lang.String scopeDefinitionId)
Only select audit instances with the given scope definition id.AuditInstanceQuery
scopeId(java.lang.String scopeId)
Only select audit instances with the given scope id.AuditInstanceQuery
scopeType(java.lang.String scopeType)
Only select audit instances with the given scope type.AuditInstanceQuery
subScopeId(java.lang.String subScopeId)
Only select audit instances with the given sub scope id.AuditInstanceQuery
subType(java.lang.String subType)
Only select audit instances with the given sub type.AuditInstanceQuery
tenantId(java.lang.String tenantId)
Only select audit instances that have the given tenant id.AuditInstanceQuery
tenantIdLike(java.lang.String tenantIdLike)
Only select audit instances with a tenant id like the given one.AuditInstanceQuery
type(java.lang.String type)
Only select audit instances with the given type.AuditInstanceQuery
withoutTenantId()
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. -
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 start date (needs to be followed byQuery.asc()
orQuery.desc()
).
-