Interface RemoteAuditService
-
- All Known Implementing Classes:
RemoteAuditServiceImpl
@Deprecated public interface RemoteAuditService
Deprecated.since 7.5.0. Use AuditRestResource API from atlassian-audit-pluginAllows using Audit REST API in integration tests- Since:
- 7.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Future<String>
csvExport()
Deprecated.Future<List<AuditRecord>>
getRecords(Instant from, Instant to)
Deprecated.Future<List<AuditRecord>>
getRecords(Instant from, Instant to, String searchString)
Deprecated.Future<RetentionPeriod>
getRetentionPeriod()
Deprecated.Future<RetentionPeriod>
setRetentionPeriod(RetentionPeriod retentionPeriod)
Deprecated.Future<AuditRecord>
storeRecord(AuditRecord record)
Deprecated.
-
-
-
Method Detail
-
storeRecord
Future<AuditRecord> storeRecord(AuditRecord record)
Deprecated.
-
getRecords
Future<List<AuditRecord>> getRecords(Instant from, Instant to)
Deprecated.
-
getRecords
Future<List<AuditRecord>> getRecords(Instant from, Instant to, String searchString)
Deprecated.
-
getRetentionPeriod
Future<RetentionPeriod> getRetentionPeriod()
Deprecated.
-
setRetentionPeriod
Future<RetentionPeriod> setRetentionPeriod(RetentionPeriod retentionPeriod)
Deprecated.
-
-