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 TypeMethodDescriptionvoidbulkDeleteAuditInstancesByScopeIdsAndScopeType(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.voiddeleteAuditInstance(String auditInstanceId) Deletes an audit instance by id.voiddeleteAuditInstancesByScopeIdAndScopeType(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
-