Package com.flowable.audit.api
Interface AuditService
- All Known Implementing Classes:
AuditServiceImpl
public interface AuditService
The main service to create and retrieve
AuditInstance
.- Author:
- Micha Kiener
-
Method Summary
Modifier and TypeMethodDescriptionvoid
bulkDeleteAuditInstancesByScopeIdsAndScopeType
(Collection<String> scopeIds, String scopeType) Bulk delete audit instances by scope ids and scope typeReturns a builder to create a newAuditInstance
.Returns a query object to search forAuditInstance
.void
deleteAuditInstance
(String auditInstanceId) Deletes an audit instance by id.void
deleteAuditInstancesByScopeIdAndScopeType
(String scopeId, String scopeType) Delete audit instances by scope id and scope type
-
Method Details
-
createAuditInstanceBuilder
AuditInstanceBuilder createAuditInstanceBuilder()Returns a builder to create a newAuditInstance
. -
createAuditInstanceQuery
AuditInstanceQuery createAuditInstanceQuery()Returns a query object to search forAuditInstance
. -
deleteAuditInstance
Deletes an audit instance by id. -
deleteAuditInstancesByScopeIdAndScopeType
Delete audit instances by scope id and scope type -
bulkDeleteAuditInstancesByScopeIdsAndScopeType
Bulk delete audit instances by scope ids and scope type
-