diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-02 12:16:17 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-02 12:16:17 +0500 |
commit | 5a964d4adf67d2f49b58f0b14d4388d7aa2353d2 (patch) | |
tree | 54a3ddde7b08557ed2aa5bb0dfd35385b1242908 /src/org/traccar/protocol/GranitProtocolSmsEncoder.java | |
parent | 5012663d8688fa521fa7de02116f42ddbb57e7fb (diff) | |
download | trackermap-server-5a964d4adf67d2f49b58f0b14d4388d7aa2353d2.tar.gz trackermap-server-5a964d4adf67d2f49b58f0b14d4388d7aa2353d2.tar.bz2 trackermap-server-5a964d4adf67d2f49b58f0b14d4388d7aa2353d2.zip |
Implement sms commands
Diffstat (limited to 'src/org/traccar/protocol/GranitProtocolSmsEncoder.java')
-rw-r--r-- | src/org/traccar/protocol/GranitProtocolSmsEncoder.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/GranitProtocolSmsEncoder.java b/src/org/traccar/protocol/GranitProtocolSmsEncoder.java new file mode 100644 index 000000000..05954d550 --- /dev/null +++ b/src/org/traccar/protocol/GranitProtocolSmsEncoder.java @@ -0,0 +1,38 @@ +/* + * Copyright 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2017 Andrey Kunitsyn (andrey@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.BaseProtocolSmsEncoder; +import org.traccar.helper.Log; +import org.traccar.model.Command; + +public class GranitProtocolSmsEncoder extends BaseProtocolSmsEncoder { + + @Override + protected String encodeSmsCommand(Command command) { + switch (command.getType()) { + case Command.TYPE_REBOOT_DEVICE: + return "BB+RESET"; + case Command.TYPE_POSITION_PERIODIC: + return formatCommand(command, "BB+BBMD={%s}", Command.KEY_FREQUENCY); + default: + Log.warning(new UnsupportedOperationException(command.getType())); + return null; + } + } + +} |