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