From c6cc8a87eb593dbf765814d1aaa09d5d231fa7fe Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Thu, 26 May 2016 16:14:52 +0500 Subject: Events subsystem --- src/org/traccar/model/Event.java | 74 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 src/org/traccar/model/Event.java (limited to 'src/org/traccar/model/Event.java') 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; + } + +} -- cgit v1.2.3