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 forAuditInstance.- Author:
- Micha Kiener
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
id
AuditInstanceQuery id(java.lang.String id)
Only select audit instances with the given id.
-
ids
AuditInstanceQuery ids(java.util.Set<java.lang.String> ids)
Only select audit instances with the given ids.
-
auditDefinitionId
AuditInstanceQuery auditDefinitionId(java.lang.String auditDefinitionId)
Only select audit instances with the given audit definition id.
-
auditDefinitionIdLike
AuditInstanceQuery auditDefinitionIdLike(java.lang.String auditDefinitionIdLike)
Only select audit instances with an audit definition id like the given string.
-
scopeId
AuditInstanceQuery scopeId(java.lang.String scopeId)
Only select audit instances with the given scope id.
-
subScopeId
AuditInstanceQuery subScopeId(java.lang.String subScopeId)
Only select audit instances with the given sub scope id.
-
scopeType
AuditInstanceQuery scopeType(java.lang.String scopeType)
Only select audit instances with the given scope type.
-
scopeDefinitionId
AuditInstanceQuery scopeDefinitionId(java.lang.String scopeDefinitionId)
Only select audit instances with the given scope definition id.
-
externalId
AuditInstanceQuery externalId(java.lang.String externalId)
Only select audit instances with the given external id.
-
type
AuditInstanceQuery type(java.lang.String type)
Only select audit instances with the given type.
-
subType
AuditInstanceQuery subType(java.lang.String subType)
Only select audit instances with the given sub type.
-
createdBefore
AuditInstanceQuery createdBefore(java.util.Date createdBefore)
-
createdAfter
AuditInstanceQuery createdAfter(java.util.Date createdAfter)
-
tenantId
AuditInstanceQuery tenantId(java.lang.String tenantId)
Only select audit instances that have the given tenant id.
-
tenantIdLike
AuditInstanceQuery tenantIdLike(java.lang.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(java.lang.String creatorId)
Select audit instances using a given creatorId.
-
orderByCreationTime
AuditInstanceQuery orderByCreationTime()
Order by start date (needs to be followed byQuery.asc()orQuery.desc()).
-
-