diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2022-02-04 11:56:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 11:56:58 -0800 |
commit | 5878ea602d087da291687a0120b5a3f31f7ee861 (patch) | |
tree | 851c6e2b388b97f3cdaa7a539e713a6e0d5d2c05 /src/main/java/org/traccar/protocol/TotemProtocolSmsEncoder.java | |
parent | 135b98315ff4a34025b21221862236936e745823 (diff) | |
parent | c21626223cd0c480725d8057a2cd4bf2b9d7e0b3 (diff) | |
download | trackermap-server-5878ea602d087da291687a0120b5a3f31f7ee861.tar.gz trackermap-server-5878ea602d087da291687a0120b5a3f31f7ee861.tar.bz2 trackermap-server-5878ea602d087da291687a0120b5a3f31f7ee861.zip |
Merge pull request #4790 from jinzo/totem-advanced-commands
Totem support for SMS and GPRS commands
Diffstat (limited to 'src/main/java/org/traccar/protocol/TotemProtocolSmsEncoder.java')
-rw-r--r-- | src/main/java/org/traccar/protocol/TotemProtocolSmsEncoder.java | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/protocol/TotemProtocolSmsEncoder.java b/src/main/java/org/traccar/protocol/TotemProtocolSmsEncoder.java new file mode 100644 index 000000000..8656f8a5c --- /dev/null +++ b/src/main/java/org/traccar/protocol/TotemProtocolSmsEncoder.java @@ -0,0 +1,37 @@ +/* + * Copyright 2015 Irving Gonzalez + * Copyright 2015 - 2019 Anton Tananaev (anton@traccar.org) + * + * 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.model.Command; +import org.traccar.Protocol; + +public class TotemProtocolSmsEncoder extends StringProtocolEncoder { + + public TotemProtocolSmsEncoder(Protocol protocol) { + super(protocol); + } + + @Override + protected Object encodeCommand(Command command) { + + initDevicePassword(command, "000000"); + + return String.format("*%s#", TotemProtocolEncoder.formatContent(command)); + } + +} |