1 package com.atlassian.dbexporter;
2
3 import com.atlassian.dbexporter.progress.ProgressMonitor;
4
5 /**
6 * Gives access to the essential configuration elements used during import/export
7 *
8 * @author Samuel Le Berrigaud
9 */
10 public interface ImportExportConfiguration {
11 ConnectionProvider getConnectionProvider();
12
13 ProgressMonitor getProgressMonitor();
14
15 EntityNameProcessor getEntityNameProcessor();
16 }