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 { public List
getAllAdresses() throws SQLException ; public List getAliasList() throws SQLException; public List getExtendedAdresslist() throws SQLException; public Map get100PctList() throws SQLException; public void saveRequestLog(String brugerid, String postnr, String adresse, String omdelingsdag, SearchResult result) throws SQLException; }