package dk.daoas.adressevedligehold.coveragefileupload; import java.io.IOException; public interface AddressSource extends AutoCloseable { String getFilename(); String getDistributor(); void validate() throws IOException; AddressSourceEntry getNextEntry() throws IOException; boolean calculateDistances(); }