package dk.daoas.daoadresseservice.db; import java.sql.SQLException; import java.util.List; import java.util.Map; import dk.daoas.daoadresseservice.beans.Address; import dk.daoas.daoadresseservice.beans.AliasBean; import dk.daoas.daoadresseservice.beans.ExtendedBean; import dk.daoas.daoadresseservice.beans.HundredePctBean; import dk.daoas.daoadresseservice.beans.SearchResult; public interface DatabaseLayer { List
getAllAdresses() throws SQLException ; List getAliasList() throws SQLException; List getExtendedAdresslist() throws SQLException; Map get100PctList() throws SQLException; void saveRequestLog(String brugerid, String postnr, String adresse, String omdelingsdag, SearchResult result) throws SQLException; }