aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2014-08-24 13:11:23 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2014-08-24 13:11:23 +1200
commit77b47931a4cc52d69359c8878169f1caa3050b03 (patch)
tree7e0698f7a41cf7831864a7df51b2a16839d1d883
parent26ae299abceed2b07a0cec77a70a21d973410972 (diff)
downloadtrackermap-server-77b47931a4cc52d69359c8878169f1caa3050b03.tar.gz
trackermap-server-77b47931a4cc52d69359c8878169f1caa3050b03.tar.bz2
trackermap-server-77b47931a4cc52d69359c8878169f1caa3050b03.zip
Add message class
-rw-r--r--src/org/traccar/model/Message.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/org/traccar/model/Message.java b/src/org/traccar/model/Message.java
new file mode 100644
index 000000000..c699393d8
--- /dev/null
+++ b/src/org/traccar/model/Message.java
@@ -0,0 +1,57 @@
+/*
+ * Copyright 2013 Anton Tananaev (anton.tananaev@gmail.com)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.traccar.model;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class Message {
+
+ private final Map data = new HashMap();
+
+ public void putString(String key, String value) {
+ data.put(key, value);
+ }
+
+ public String getString(String key) {
+ return (String) data.get(key);
+ }
+
+ public void putInteger(String key, int value) {
+ data.put(key, value);
+ }
+
+ public int getInteger(String key) {
+ return (Integer) data.get(key);
+ }
+
+ public void putDouble(String key, double value) {
+ data.put(key, value);
+ }
+
+ public double getDouble(String key) {
+ return (Double) data.get(key);
+ }
+
+ public void putBoolean(String key, boolean value) {
+ data.put(key, value);
+ }
+
+ public boolean getBoolean(String key) {
+ return (Boolean) data.get(key);
+ }
+
+}