aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/model/Event.java
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-05-26 16:14:52 +0500
committerAbyss777 <abyss@fox5.ru>2016-05-26 16:14:52 +0500
commitc6cc8a87eb593dbf765814d1aaa09d5d231fa7fe (patch)
tree8b0cddcc79476a3252c8aec0946bd6e8e016b475 /src/org/traccar/model/Event.java
parentaa12e5c750e771016545269ffa39409b06b47eee (diff)
downloadtraccar-server-c6cc8a87eb593dbf765814d1aaa09d5d231fa7fe.tar.gz
traccar-server-c6cc8a87eb593dbf765814d1aaa09d5d231fa7fe.tar.bz2
traccar-server-c6cc8a87eb593dbf765814d1aaa09d5d231fa7fe.zip
Events subsystem
Diffstat (limited to 'src/org/traccar/model/Event.java')
-rw-r--r--src/org/traccar/model/Event.java74
1 files changed, 74 insertions, 0 deletions
diff --git a/src/org/traccar/model/Event.java b/src/org/traccar/model/Event.java
new file mode 100644
index 000000000..27c750c49
--- /dev/null
+++ b/src/org/traccar/model/Event.java
@@ -0,0 +1,74 @@
+package org.traccar.model;
+
+import java.util.Date;
+
+public class Event extends Message {
+
+ public Event(String type, long deviceId, long positionId) {
+ this.setType(type);
+ this.setDeviceId(deviceId);
+ this.setPositionId(positionId);
+ this.eventTime = new Date();
+ }
+
+ public Event(String type, long deviceId) {
+ this.setType(type);
+ this.setDeviceId(deviceId);
+ this.eventTime = new Date();
+ }
+
+ public Event() {
+ }
+
+ private long id;
+
+ public long getId() {
+ return id;
+ }
+
+ public void setId(long id) {
+ this.id = id;
+ }
+
+ public static final String COMMAND_RESULT = "command-result";
+
+ public static final String DEVICE_ONLINE = "device-online";
+ public static final String DEVICE_OFFLINE = "device-offline";
+
+ public static final String DEVICE_MOVING = "device-moving";
+ public static final String DEVICE_STOPPED = "device-stopped";
+
+ public static final String DEVICE_OVERSPEED = "device-overspeed";
+
+ public static final String GEOFENCE_ENTER = "geofence-enter";
+ public static final String GEOFENCE_EXIT = "geofence-exit";
+
+ private Date eventTime;
+
+ public Date getEventTime() {
+ if (eventTime != null) {
+ return new Date(eventTime.getTime());
+ } else {
+ return null;
+ }
+ }
+
+ public void setEventTime(Date eventTime) {
+ if (eventTime != null) {
+ this.eventTime = new Date(eventTime.getTime());
+ } else {
+ this.eventTime = null;
+ }
+ }
+
+ private long positionId;
+
+ public long getPositionId() {
+ return positionId;
+ }
+
+ public void setPositionId(long positionId) {
+ this.positionId = positionId;
+ }
+
+}