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/BaseProtocolSmsEncoder.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/BaseProtocolSmsEncoder.java')
-rw-r--r-- | src/org/traccar/BaseProtocolSmsEncoder.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/org/traccar/BaseProtocolSmsEncoder.java b/src/org/traccar/BaseProtocolSmsEncoder.java new file mode 100644 index 000000000..b5694794c --- /dev/null +++ b/src/org/traccar/BaseProtocolSmsEncoder.java @@ -0,0 +1,30 @@ +/* + * 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; + +import org.traccar.model.Command; + +public abstract class BaseProtocolSmsEncoder extends StringProtocolEncoder { + + protected abstract String encodeSmsCommand(Command command); + + @Override + protected Object encodeCommand(Command command) { + return null; + } + +} |