Interface MigrationLogDao
- All Known Implementing Classes:
MigrationLogDaoImpl
public interface MigrationLogDao
Exists for writing migration log messages to the relevant logs, typically the JIRA output logs and Audit log.
- Since:
- 7.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
store
(AuditEntry event) Persists the auditing entry in the database.void
write
(MigrationLog record) Records the provided logs in the record for later retrieval.
-
Method Details
-
write
Records the provided logs in the record for later retrieval.- Parameters:
record
- contains the log messages for writing
-
store
Persists the auditing entry in the database. Changes are written immediately.- Parameters:
event
- the log entry to persist.
-