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
  • Method Details

    • id

      Only select audit instances with the given id.
    • 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

      Only select audit instances with the given type.
    • subType

      AuditInstanceQuery subType(String subType)
      Only select audit instances with the given sub type.
    • searchText

      AuditInstanceQuery searchText(String 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

      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 creation time (needs to be followed by Query.asc() or Query.desc()).
    • orderByType

      AuditInstanceQuery orderByType()
      Order by type (needs to be followed by Query.asc() or Query.desc()).
    • orderBySubType

      AuditInstanceQuery orderBySubType()
      Order by subType (needs to be followed by Query.asc() or Query.desc()).
    • orderByExternalId

      AuditInstanceQuery orderByExternalId()
      Order by subType (needs to be followed by Query.asc() or Query.desc()).
    • getAuditInstanceTypeInformation

      AuditInstanceTypeInformation getAuditInstanceTypeInformation()