/activeobjects-dbex/src/main/java/com/atlassian/dbexporter/importer/DatabaseCleaner.java
Java | 11 lines | 5 code | 2 blank | 4 comment | 0 complexity | d36eecebcf609b53f957228b3d774c24 MD5 | raw file
Possible License(s): Apache-2.0
1package com.atlassian.dbexporter.importer;
2
3import 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 */
9public interface DatabaseCleaner {
10 void cleanup(CleanupMode cleanupMode);
11}