--- dao/DaoAdresseService/src/main/java/dk/daoas/daoadresseservice/db/DatabaseLayer.java 2016/02/13 07:05:11 2942 +++ dao/DaoAdresseService/src/main/java/dk/daoas/daoadresseservice/db/DatabaseLayer.java 2016/02/13 07:24:34 2943 @@ -14,17 +14,14 @@ public interface DatabaseLayer { - public List
getAllAdresses() throws SQLException ; + List
getAllAdresses() throws SQLException ; - public List getAliasList() throws SQLException; + List getAliasList() throws SQLException; - public List getExtendedAdresslist() throws SQLException; + List getExtendedAdresslist() throws SQLException; - public Map get100PctList() throws SQLException; - - public void saveRequestLog(String brugerid, String postnr, String adresse, String omdelingsdag, SearchResult result) throws SQLException; - - + Map get100PctList() throws SQLException; + void saveRequestLog(String brugerid, String postnr, String adresse, String omdelingsdag, SearchResult result) throws SQLException; }