aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/Protocol.java
blob: bcb591aaff7b2499755e0594225359604fe59332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.traccar;

import org.traccar.database.ActiveDevice;
import org.traccar.http.commands.GpsCommand;

import java.util.List;

public interface Protocol {

    public String getName();

    void sendCommand(ActiveDevice activeDevice, GpsCommand command);

    void addTrackerServersTo(List<TrackerServer> serverList);
}