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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2338 - (show annotations) (download)
Mon Feb 23 12:48:00 2015 UTC (9 years, 2 months ago) by torben
File size: 704 byte(s)
Gem statistic omkring indlæsnings tid og tidsforbrug
1 package dk.daoas.daoadresseservice.beans;
2
3 import java.util.Date;
4
5 public class DataStatisticsBean {
6
7 public int direkteCount = 0;
8 public int extendedCount = 0;
9 public int hundredePctCount = 0;
10 public int ikkeDaekketCount = 0;
11
12 public long elapsed;
13 public String buildTime;
14
15
16 public int getDirekteCount() {
17 return direkteCount;
18 }
19
20
21 public int getExtendedCount() {
22 return extendedCount;
23 }
24
25
26 public int getHundredePctCount() {
27 return hundredePctCount;
28 }
29
30
31 public int getIkkeDaekketCount() {
32 return ikkeDaekketCount;
33 }
34
35
36 public long getElapsed() {
37 return elapsed;
38 }
39
40
41 public String getBuildTime() {
42 return buildTime;
43 }
44
45
46
47 }

  ViewVC Help
Powered by ViewVC 1.1.20