diff options
Diffstat (limited to 'src/org/traccar/model/Event.java')
-rw-r--r-- | src/org/traccar/model/Event.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/org/traccar/model/Event.java b/src/org/traccar/model/Event.java index caee7133b..fba5619d2 100644 --- a/src/org/traccar/model/Event.java +++ b/src/org/traccar/model/Event.java @@ -45,11 +45,11 @@ public abstract class Event { public Map<String, Object> getOther() { return other; } public void setOther(Map<String, Object> 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 set(String key, boolean value) { other.put(key, value); } + public void set(String key, int value) { other.put(key, value); } + public void set(String key, long value) { other.put(key, value); } + public void set(String key, double value) { other.put(key, value); } + public void set(String key, String value) { if (value != null && !value.isEmpty()) other.put(key, value); } // Words separated by dashes (word-second-third) public static final String KEY_INDEX = "index"; |