/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
- package com.atlassian.dbexporter.importer;
- import com.atlassian.dbexporter.CleanupMode;
- /**
- * Main interface for cleaning up the database before import. Cleaning up meaning running the necessary
- * updates on the DB (drops, updates, etc.) so that the import might be successful.
- */
- public interface DatabaseCleaner {
- void cleanup(CleanupMode cleanupMode);
- }