Package com.atlassian.jira.auditing
Interface AuditingManager
- All Known Implementing Classes:
AuditingManagerImpl
Deprecated.
- Since:
- v6.2
-
Method Summary
Modifier and TypeMethodDescriptiongetRecords(Long maxId, Long sinceId, Integer maxResults, Integer offset, AuditingFilter filter) Deprecated.Get records from the database.voidstore(RecordRequest request) Deprecated.
-
Method Details
-
store
Deprecated. -
getRecords
@Nonnull Records getRecords(@Nullable Long maxId, @Nullable Long sinceId, @Nullable Integer maxResults, @Nullable Integer offset, @Nullable AuditingFilter filter) Deprecated.Get records from the database.- Parameters:
maxId- max record id to return (including), doesn't have to represent a real record in the databasesinceId- smallest record id to return (including), doesn't have to represent a real record in the databasemaxResults- number of records to get, you cannot get more than 10000 records at once (if you provide larger number it will be automatically capped)offset- offset from which records are being countedfilter- defines how records should be filtered out before being returned, if null records will not be filtered
-
Use
AuditServiceandAuditSearchServiceinstead.