From f7198adaf371e08a72a837d417b29531c117c6ba Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 29 Apr 2015 13:41:15 +1200 Subject: Store other data in position --- src/org/traccar/model/ExtendedInfoFormatter.java | 93 ------------------------ 1 file changed, 93 deletions(-) delete mode 100644 src/org/traccar/model/ExtendedInfoFormatter.java (limited to 'src/org/traccar/model/ExtendedInfoFormatter.java') diff --git a/src/org/traccar/model/ExtendedInfoFormatter.java b/src/org/traccar/model/ExtendedInfoFormatter.java deleted file mode 100644 index e7e0dead0..000000000 --- a/src/org/traccar/model/ExtendedInfoFormatter.java +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright 2013 - 2014 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.Iterator; -import java.util.LinkedHashMap; -import java.util.Map; - -/** - * Format extended tracker status - */ -public class ExtendedInfoFormatter { - - private static final String rootNode = "info"; - - private final Map data; - - public ExtendedInfoFormatter(String protocol) { - data = new LinkedHashMap(); - data.put("protocol", protocol); - } - - public void set(String key, Object value) { - if (value != null) { - // Exclude empty strings - if ((value instanceof String) && ((String) value).isEmpty()) { - return; - } - - data.put(key, value); - } - } - - private String toXmlString() { - StringBuilder result = new StringBuilder(); - - result.append("<").append(rootNode).append(">"); - - for (Map.Entry entry : data.entrySet()) { - - result.append("<").append(entry.getKey()).append(">"); - result.append(entry.getValue()); - result.append(""); - } - - result.append(""); - - return result.toString(); - } - - private String toJsonString() { - StringBuilder result = new StringBuilder(); - - result.append("{"); - - Iterator > i = data.entrySet().iterator(); - - while (i.hasNext()) { - Map.Entry entry = i.next(); - - result.append('"').append(entry.getKey()).append('"'); - result.append(':'); - result.append('"').append(entry.getValue()).append('"'); - - if (i.hasNext()) { - result.append(','); - } - } - - result.append("}"); - - return result.toString(); - } - - @Override - public String toString() { - return toXmlString(); - } - -} -- cgit v1.2.3