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