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 AuditInstanceQueryauditDefinitionId(java.lang.String auditDefinitionId)Only select audit instances with the given audit definition id.AuditInstanceQueryauditDefinitionIdLike(java.lang.String auditDefinitionIdLike)Only select audit instances with an audit definition id like the given string.AuditInstanceQuerycreatedAfter(java.util.Date createdAfter)AuditInstanceQuerycreatedBefore(java.util.Date createdBefore)AuditInstanceQuerycreatorId(java.lang.String creatorId)Select audit instances using a given creatorId.AuditInstanceQueryexternalId(java.lang.String externalId)Only select audit instances with the given external id.AuditInstanceQueryid(java.lang.String id)Only select audit instances with the given id.AuditInstanceQueryids(java.util.Set<java.lang.String> ids)Only select audit instances with the given ids.AuditInstanceQueryorderByCreationTime()Order by start date (needs to be followed byQuery.asc()orQuery.desc()).AuditInstanceQueryscopeDefinitionId(java.lang.String scopeDefinitionId)Only select audit instances with the given scope definition id.AuditInstanceQueryscopeId(java.lang.String scopeId)Only select audit instances with the given scope id.AuditInstanceQueryscopeType(java.lang.String scopeType)Only select audit instances with the given scope type.AuditInstanceQuerysubScopeId(java.lang.String subScopeId)Only select audit instances with the given sub scope id.AuditInstanceQuerysubType(java.lang.String subType)Only select audit instances with the given sub type.AuditInstanceQuerytenantId(java.lang.String tenantId)Only select audit instances that have the given tenant id.AuditInstanceQuerytenantIdLike(java.lang.String tenantIdLike)Only select audit instances with a tenant id like the given one.AuditInstanceQuerytype(java.lang.String type)Only select audit instances with the given type.AuditInstanceQuerywithoutTenantId()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()).
-