/[projects]/dao/DaoAdresseService/src/main/java/dk/daoas/daoadresseservice/db/DatabaseLayer.java
ViewVC logotype

Contents of /dao/DaoAdresseService/src/main/java/dk/daoas/daoadresseservice/db/DatabaseLayer.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2665 - (show annotations) (download)
Tue Aug 25 08:46:29 2015 UTC (8 years, 8 months ago) by torben
File size: 871 byte(s)
Gem omdelingsdag i log databasen
1 package dk.daoas.daoadresseservice.db;
2
3
4 import java.sql.SQLException;
5 import java.util.List;
6 import java.util.Map;
7
8 import dk.daoas.daoadresseservice.beans.Address;
9 import dk.daoas.daoadresseservice.beans.AliasBean;
10 import dk.daoas.daoadresseservice.beans.ExtendedBean;
11 import dk.daoas.daoadresseservice.beans.HundredePctBean;
12 import dk.daoas.daoadresseservice.beans.SearchResult;
13
14 public interface DatabaseLayer {
15
16
17 public List<Address> getAllAdresses() throws SQLException ;
18
19 public List<AliasBean> getAliasList() throws SQLException;
20
21 public List<ExtendedBean> getExtendedAdresslist() throws SQLException;
22
23 public Map<Short,HundredePctBean> get100PctList() throws SQLException;
24
25 public void saveRequestLog(String brugerid, String postnr, String adresse, String omdelingsdag, SearchResult result) throws SQLException;
26
27
28
29
30 }

  ViewVC Help
Powered by ViewVC 1.1.20