aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/http/CommandsServlet.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-06-30 09:51:23 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2015-06-30 09:51:23 +1200
commit727e7bfad908abd899d1114c5405f9bf69b47ebc (patch)
tree5c66197f72f4cbb42a1b5cecd5a71fed4b2ed757 /src/org/traccar/http/CommandsServlet.java
parent54c54703d66e8991472c1f7476ba4acb424b27d9 (diff)
downloadtraccar-server-727e7bfad908abd899d1114c5405f9bf69b47ebc.tar.gz
traccar-server-727e7bfad908abd899d1114c5405f9bf69b47ebc.tar.bz2
traccar-server-727e7bfad908abd899d1114c5405f9bf69b47ebc.zip
Active devices in connection manager
Diffstat (limited to 'src/org/traccar/http/CommandsServlet.java')
-rw-r--r--src/org/traccar/http/CommandsServlet.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/http/CommandsServlet.java b/src/org/traccar/http/CommandsServlet.java
index f68a7a74e..bf40b79e6 100644
--- a/src/org/traccar/http/CommandsServlet.java
+++ b/src/org/traccar/http/CommandsServlet.java
@@ -31,7 +31,7 @@ public class CommandsServlet extends BaseServlet {
String uniqueId = command.getUniqueId();
- ActiveDevice activeDevice = Context.getDataManager().getActiveDevice(uniqueId);
+ ActiveDevice activeDevice = Context.getConnectionManager().getActiveDevice(uniqueId);
if(activeDevice == null) {
throw new RuntimeException("The device has not yet registered to the server");
}
@@ -45,7 +45,7 @@ public class CommandsServlet extends BaseServlet {
JsonObject json = Json.createReader(req.getReader()).readObject();
String uniqueId = json.getString("uniqueId");
- ActiveDevice activeDevice = Context.getDataManager().getActiveDevice(uniqueId);
+ ActiveDevice activeDevice = Context.getConnectionManager().getActiveDevice(uniqueId);
if(activeDevice == null) {
throw new RuntimeException("The device has not yet registered to the server");
}