/[projects]/dao/DaoAdresseService/src/main/java/dk/daoas/daoadresseservice/beans/DataStatisticsBean.java
ViewVC logotype

Contents of /dao/DaoAdresseService/src/main/java/dk/daoas/daoadresseservice/beans/DataStatisticsBean.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2598 - (show annotations) (download)
Mon Jul 13 10:32:11 2015 UTC (8 years, 10 months ago) by torben
File size: 772 byte(s)
Vis også total antal adresser
1 package dk.daoas.daoadresseservice.beans;
2
3
4 public class DataStatisticsBean {
5
6
7 public int totalCount = 0;
8 public int direkteCount = 0;
9 public int extendedCount = 0;
10 public int hundredePctCount = 0;
11 public int ikkeDaekketCount = 0;
12
13 public long elapsed;
14 public String buildTime;
15
16
17 public int getTotalCount() {
18 return totalCount;
19 }
20
21 public int getDirekteCount() {
22 return direkteCount;
23 }
24
25
26 public int getExtendedCount() {
27 return extendedCount;
28 }
29
30
31 public int getHundredePctCount() {
32 return hundredePctCount;
33 }
34
35
36 public int getIkkeDaekketCount() {
37 return ikkeDaekketCount;
38 }
39
40
41 public long getElapsed() {
42 return elapsed;
43 }
44
45
46 public String getBuildTime() {
47 return buildTime;
48 }
49
50
51
52 }

  ViewVC Help
Powered by ViewVC 1.1.20