diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-06 10:07:43 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-06 10:25:28 +0500 |
commit | 679f838e8bd0caaea94b1d4d1cd9b740ea3b9606 (patch) | |
tree | 5615803d51c2c321514f70dd36ae92143e233ac7 /src/org/traccar/Protocol.java | |
parent | cbb28de69d4da85b3baff9967549d35952164a31 (diff) | |
download | trackermap-server-679f838e8bd0caaea94b1d4d1cd9b740ea3b9606.tar.gz trackermap-server-679f838e8bd0caaea94b1d4d1cd9b740ea3b9606.tar.bz2 trackermap-server-679f838e8bd0caaea94b1d4d1cd9b740ea3b9606.zip |
Introduce terms "data" and "text" commands
Diffstat (limited to 'src/org/traccar/Protocol.java')
-rw-r--r-- | src/org/traccar/Protocol.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/org/traccar/Protocol.java b/src/org/traccar/Protocol.java index f6a4fbebb..87ac05298 100644 --- a/src/org/traccar/Protocol.java +++ b/src/org/traccar/Protocol.java @@ -10,14 +10,14 @@ public interface Protocol { String getName(); - Collection<String> getSupportedCommands(); + Collection<String> getSupportedDataCommands(); - void sendCommand(ActiveDevice activeDevice, Command command); + void sendDataCommand(ActiveDevice activeDevice, Command command); void initTrackerServers(List<TrackerServer> serverList); - Collection<String> getSupportedSmsCommands(); + Collection<String> getSupportedTextCommands(); - void sendSmsCommand(String phone, Command command) throws Exception; + void sendTextCommand(String destAddress, Command command) throws Exception; } |