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