diff options
author | Hans van den Elsen <hans.elsen@esds.nl> | 2016-02-13 16:13:18 +0100 |
---|---|---|
committer | Hans van den Elsen <hans.elsen@esds.nl> | 2016-02-13 16:13:18 +0100 |
commit | 8622ba6e081b987a96e3b1885209576f3c389266 (patch) | |
tree | a7fdac02b5144d2feb2348c1bc244a66e2b0f099 /src/org/traccar/protocol/MiniFinderProtocolEncoder.java | |
parent | 5a4562f8e53e4e00a610c9715786f70a743067b5 (diff) | |
download | trackermap-server-8622ba6e081b987a96e3b1885209576f3c389266.tar.gz trackermap-server-8622ba6e081b987a96e3b1885209576f3c389266.tar.bz2 trackermap-server-8622ba6e081b987a96e3b1885209576f3c389266.zip |
Added objectEncoder for Minifinder protocol
Diffstat (limited to 'src/org/traccar/protocol/MiniFinderProtocolEncoder.java')
-rw-r--r-- | src/org/traccar/protocol/MiniFinderProtocolEncoder.java | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/MiniFinderProtocolEncoder.java b/src/org/traccar/protocol/MiniFinderProtocolEncoder.java new file mode 100644 index 000000000..5d15bc54a --- /dev/null +++ b/src/org/traccar/protocol/MiniFinderProtocolEncoder.java @@ -0,0 +1,40 @@ +/* + * Copyright 2015 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.protocol; + +import org.traccar.StringProtocolEncoder; +import org.traccar.helper.Log; +import org.traccar.model.Command; + +public class MiniFinderProtocolEncoder extends StringProtocolEncoder { + + private static final String prefix = "123456"; + + @Override + protected Object encodeCommand(Command command) { + + switch (command.getType()) { + case Command.CUSTOM: + return command.getAttributes().keySet().iterator().next().toString(); + default: + Log.warning(new UnsupportedOperationException(command.getType())); + break; + } + + return null; + } + +} |