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