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