--- dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/AddressSource.java 2016/01/24 21:48:55 2838 +++ dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/AddressSource.java 2016/02/12 22:47:30 2939 @@ -4,9 +4,12 @@ public interface AddressSource extends AutoCloseable { - public String getFilename(); + String getFilename(); - public String getDistributor(); - public AddressSourceEntry getNextEntry() throws IOException ; + String getDistributor(); + + void validate() throws IOException; + + AddressSourceEntry getNextEntry() throws IOException; }