1 package com.atlassian.dbexporter.importer;
2
3 import com.atlassian.dbexporter.Context;
4 import com.atlassian.dbexporter.node.NodeParser;
5
6 public interface AroundImporter {
7 void before(NodeParser node, ImportConfiguration configuration, Context context);
8
9 void after(NodeParser node, ImportConfiguration configuration, Context context);
10 }