aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/model/Command.java
blob: 8c4e3f0f15525b893c8b16217edaa9b209d0160d (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
28
29
30
31
32
33
34
35
package org.traccar.model;

import java.util.LinkedHashMap;
import java.util.Map;

public class Command implements Factory {

    @Override
    public Command create() {
        return new Command();
    }

    private long deviceId;
    public long getDeviceId() { return deviceId; }
    public void setDeviceId(long deviceId) { this.deviceId = deviceId; }

    private String type;
    public String getType() { return type; }
    public void setType(String type) { this.type = type; }

    private Map<String, Object> other = new LinkedHashMap<>();
    public Map<String, Object> getOther() { return other; }
    public void setOther(Map<String, Object> other) { this.other = other; }

    public static final String TYPE_POSITION_STOP = "positionStop";
    public static final String TYPE_POSITION_FIX = "positionFix";
    public static final String TYPE_ENGINE_STOP = "engineStop";
    public static final String TYPE_ENGINE_RESUME = "engineResume"; 
    
    public static final String KEY_UNIQUE_ID = "uniqueId";
    public static final String KEY_FREQUENCY = "frequency";
    public static final String KEY_GPS_PASSWORD = "gpsPassword";
    

}