From 3f6f92cedd969e741e65bb6e14737b98722b214e Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Fri, 17 Jul 2015 16:28:36 +1200 Subject: Start re-factoring commands --- src/org/traccar/model/Command.java | 32 ++++++++++++++++++++++++++++++++ src/org/traccar/model/Event.java | 5 +++-- 2 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 src/org/traccar/model/Command.java (limited to 'src/org/traccar/model') diff --git a/src/org/traccar/model/Command.java b/src/org/traccar/model/Command.java new file mode 100644 index 000000000..58aa61a7d --- /dev/null +++ b/src/org/traccar/model/Command.java @@ -0,0 +1,32 @@ +package org.traccar.model; + +import java.util.LinkedHashMap; +import java.util.Map; + +public class Command implements Factory { + + @Override + public Command create() { + return new Command(); + } + + private long deviceId; + public long getDeviceId() { return deviceId; } + public void setDeviceId(long deviceId) { this.deviceId = deviceId; } + + private String type; + public String getType() { return type; } + public void setType(String type) { this.type = type; } + + private Map other = new LinkedHashMap<>(); + public Map getOther() { return other; } + public void setOther(Map other) { this.other = other; } + + public static final String TYPE_POSITION_STOP = "positionStop"; + public static final String TYPE_POSITION_FIX = "positionFix"; + public static final String TYPE_ENGINE_STOP = "engineStop"; + public static final String TYPE_ENGINE_RESUME = "engineResume"; + + public static final String KEY_FREQUENCY = "frequency"; + +} diff --git a/src/org/traccar/model/Event.java b/src/org/traccar/model/Event.java index 0768ec9f3..b42a776ae 100644 --- a/src/org/traccar/model/Event.java +++ b/src/org/traccar/model/Event.java @@ -42,13 +42,14 @@ public abstract class Event { public void setDeviceTime(Date deviceTime) { this.deviceTime = deviceTime; } private Map other = new LinkedHashMap<>(); + public Map getOther() { return other; } + public void setOther(Map other) { this.other = other; } + public void set(String key, Object value) { if (value != null && (!(value instanceof String) || !((String) value).isEmpty())) { other.put(key, value); } } - public void setOther(Map other) { this.other = other; } - public Map getOther() { return other; } public static final String KEY_INDEX = "index"; public static final String KEY_HDOP = "hdop"; -- cgit v1.2.3