blob: cd37853d0e3dce88f47535bfb68e46e68fe7e6e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package org.traccar;
import java.util.List;
import org.traccar.database.ActiveDevice;
import org.traccar.model.Command;
public interface Protocol {
public String getName();
void sendCommand(ActiveDevice activeDevice, Command command);
void initTrackerServers(List<TrackerServer> serverList);
}
|