View Javadoc
1   package com.atlassian.dbexporter.importer;
2   
3   import com.atlassian.dbexporter.Context;
4   import com.atlassian.dbexporter.node.NodeParser;
5   
6   public interface Importer {
7       void importNode(NodeParser node, ImportConfiguration configuration, Context context);
8   
9       boolean supports(NodeParser node);
10  }