diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-05-07 16:44:27 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-05-07 16:44:27 +1200 |
commit | de56187c1a48b3c4388ff986bd318d4683f2a344 (patch) | |
tree | 9aada33125a5a9b5d9ab935ead33e48ee88b2c35 /src/org/traccar/protocol/MiniFinderProtocolEncoder.java | |
parent | ff23b231b678536e2d395680c5f9fb0f73e2ddd8 (diff) | |
download | trackermap-server-de56187c1a48b3c4388ff986bd318d4683f2a344.tar.gz trackermap-server-de56187c1a48b3c4388ff986bd318d4683f2a344.tar.bz2 trackermap-server-de56187c1a48b3c4388ff986bd318d4683f2a344.zip |
Implement general custom commands
Diffstat (limited to 'src/org/traccar/protocol/MiniFinderProtocolEncoder.java')
-rw-r--r-- | src/org/traccar/protocol/MiniFinderProtocolEncoder.java | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/org/traccar/protocol/MiniFinderProtocolEncoder.java b/src/org/traccar/protocol/MiniFinderProtocolEncoder.java deleted file mode 100644 index e5762f5dd..000000000 --- a/src/org/traccar/protocol/MiniFinderProtocolEncoder.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * 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 { - - @Override - protected Object encodeCommand(Command command) { - - switch (command.getType()) { - case Command.TYPE_CUSTOM: - return command.getAttributes().get("raw"); - default: - Log.warning(new UnsupportedOperationException(command.getType())); - break; - } - - return null; - } - -} |