blob: 604bf832fa3ac3bd0ae87bd877930b1c15a0d22c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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();
}
|