blob: 7097c4807260f3c974fd1214c0affec54464fb68 (
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.command;
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();
}
|