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