View Javadoc
1   package com.atlassian.dbexporter.exporter;
2   
3   import com.atlassian.dbexporter.Context;
4   import com.atlassian.dbexporter.node.NodeCreator;
5   
6   public interface Exporter {
7       void export(NodeCreator node, ExportConfiguration configuration, Context context);
8   }