diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-30 09:41:41 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-30 09:41:41 +1200 |
commit | 54c54703d66e8991472c1f7476ba4acb424b27d9 (patch) | |
tree | b43f2f0225b7722a1543a973a568ee2854e7b413 /src/org/traccar/http/commands/GpsCommand.java | |
parent | c646926a7fb0e66407c1ed7aa18daa1c9fc41cd8 (diff) | |
download | trackermap-server-54c54703d66e8991472c1f7476ba4acb424b27d9.tar.gz trackermap-server-54c54703d66e8991472c1f7476ba4acb424b27d9.tar.bz2 trackermap-server-54c54703d66e8991472c1f7476ba4acb424b27d9.zip |
Move commands related classes
Diffstat (limited to 'src/org/traccar/http/commands/GpsCommand.java')
-rw-r--r-- | src/org/traccar/http/commands/GpsCommand.java | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/org/traccar/http/commands/GpsCommand.java b/src/org/traccar/http/commands/GpsCommand.java deleted file mode 100644 index 604bf832f..000000000 --- a/src/org/traccar/http/commands/GpsCommand.java +++ /dev/null @@ -1,27 +0,0 @@ -package org.traccar.http.commands; - -import java.util.Map; - -public abstract class GpsCommand { - public static final String UNIQUE_ID = "uniqueId"; - private String uniqueId; - private CommandType type; - - public String getUniqueId() { - return uniqueId; - } - - public void setUniqueId(String uniqueId) { - this.uniqueId = uniqueId; - } - - public CommandType getType() { - return type; - } - - public void setType(CommandType type) { - this.type = type; - } - - public abstract Map<String, Object> getReplacements(); -} |