/activeobjects-dbex/src/main/java/com/atlassian/dbexporter/importer/DatabaseCleaner.java

https://bitbucket.org/activeobjects/ao-plugin · Java · 11 lines · 5 code · 2 blank · 4 comment · 0 complexity · d36eecebcf609b53f957228b3d774c24 MD5 · raw file

  1. package com.atlassian.dbexporter.importer;
  2. import com.atlassian.dbexporter.CleanupMode;
  3. /**
  4. * Main interface for cleaning up the database before import. Cleaning up meaning running the necessary
  5. * updates on the DB (drops, updates, etc.) so that the import might be successful.
  6. */
  7. public interface DatabaseCleaner {
  8. void cleanup(CleanupMode cleanupMode);
  9. }