1 package com.atlassian.dbexporter.importer;
2
3 import com.atlassian.dbexporter.Context;
4 import com.atlassian.dbexporter.node.NodeParser;
5
6 /**
7 * A no-op around importer, convenient when only overriding one method.
8 * <p>
9 * There isn't much reason using it for anything else...
10 */
11 public class NoOpAroundImporter implements AroundImporter {
12 @Override
13 public void before(NodeParser node, ImportConfiguration configuration, Context context) {
14 // do nothing
15 }
16
17 @Override
18 public void after(NodeParser node, ImportConfiguration configuration, Context context) {
19 // do nothing
20 }
21 }