aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/traccar/protocol/GatorProtocol.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/traccar/protocol/GatorProtocol.java')
-rw-r--r--src/main/java/org/traccar/protocol/GatorProtocol.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/org/traccar/protocol/GatorProtocol.java b/src/main/java/org/traccar/protocol/GatorProtocol.java
index 0f44fbf47..e6793875b 100644
--- a/src/main/java/org/traccar/protocol/GatorProtocol.java
+++ b/src/main/java/org/traccar/protocol/GatorProtocol.java
@@ -28,12 +28,12 @@ public class GatorProtocol extends BaseProtocol {
@Inject
public GatorProtocol(Config config) {
- setSupportedDataCommands(Command.TYPE_POSITION_SINGLE);
- setSupportedDataCommands(Command.TYPE_ENGINE_RESUME);
- setSupportedDataCommands(Command.TYPE_ENGINE_STOP);
- setSupportedDataCommands(Command.TYPE_POSITION_PERIODIC);
- setSupportedDataCommands(Command.TYPE_SET_SPEED_LIMIT);
- setSupportedDataCommands(Command.TYPE_SET_ODOMETER);
+ setSupportedDataCommands(
+ Command.TYPE_POSITION_SINGLE,
+ Command.TYPE_ENGINE_RESUME,
+ Command.TYPE_ENGINE_STOP,
+ Command.TYPE_SET_SPEED_LIMIT,
+ Command.TYPE_SET_ODOMETER);
addServer(new TrackerServer(config, getName(), false) {
@Override
protected void addProtocolHandlers(PipelineBuilder pipeline, Config config) {