diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-04-29 16:12:19 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2017-04-29 16:12:57 +1200 |
commit | 6c82282da3b35b2acf46f69655cd0d097058af24 (patch) | |
tree | a8c802590896ed7c49e374167a8a7212ef6bb06b /src/org/traccar/model/Statistics.java | |
parent | 4f235bcac5b13733684fed8e0ef05968123f6e10 (diff) | |
download | trackermap-server-6c82282da3b35b2acf46f69655cd0d097058af24.tar.gz trackermap-server-6c82282da3b35b2acf46f69655cd0d097058af24.tar.bz2 trackermap-server-6c82282da3b35b2acf46f69655cd0d097058af24.zip |
Save more statistics info
Diffstat (limited to 'src/org/traccar/model/Statistics.java')
-rw-r--r-- | src/org/traccar/model/Statistics.java | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/src/org/traccar/model/Statistics.java b/src/org/traccar/model/Statistics.java index f458ddfad..93a9c0d39 100644 --- a/src/org/traccar/model/Statistics.java +++ b/src/org/traccar/model/Statistics.java @@ -1,5 +1,5 @@ /* - * Copyright 2016 Anton Tananaev (anton@traccar.org) + * Copyright 2016 - 2017 Anton Tananaev (anton@traccar.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -87,4 +87,43 @@ public class Statistics extends Extensible { this.messagesStored = messagesStored; } + private int mailSent; + + public int getMailSent() { + return mailSent; + } + + public void setMailSent(int mailSent) { + this.mailSent = mailSent; + } + + private int smsSent; + + public int getSmsSent() { + return smsSent; + } + + public void setSmsSent(int smsSent) { + this.smsSent = smsSent; + } + + private int geocoderRequests; + + public int getGeocoderRequests() { + return geocoderRequests; + } + + public void setGeocoderRequests(int geocoderRequests) { + this.geocoderRequests = geocoderRequests; + } + private int geolocationRequests; + + public int getGeolocationRequests() { + return geolocationRequests; + } + + public void setGeolocationRequests(int geolocationRequests) { + this.geolocationRequests = geolocationRequests; + } + } |