package design.persistence.importexport; import com.fasterxml.jackson.databind.JsonNode; import java.io.IOException; public interface DataSource { void importData(JsonNode tree) throws IOException; JsonNode exportData() throws IOException; }