diff options
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(); -} |