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 Type
    Method
    Description
    void
    Persists the auditing entry in the database.
    void
    Records the provided logs in the record for later retrieval.
  • Method Details

    • write

      void write(MigrationLog record)
      Records the provided logs in the record for later retrieval.
      Parameters:
      record - contains the log messages for writing
    • store

      void store(AuditEntry event)
      Persists the auditing entry in the database. Changes are written immediately.
      Parameters:
      event - the log entry to persist.