Eclipse/Maven integration
[jpim.git] / src / main / java / de / j32 / jpim / conduit / Conduit.java
1 package de.j32.jpim.conduit;
2
3 public interface Conduit
4 {
5     public Exporter exporter() throws ConduitException;
6
7     public Importer importer() throws ConduitException;
8 }