diff options
author | Abyss777 <abyss@fox5.ru> | 2017-07-26 17:52:27 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-07-26 17:52:27 +0500 |
commit | d31f68d80a8e3ae75fa0c2f02b9ca258486a3cad (patch) | |
tree | d44c13177de39aad1d0907a4150dfa6e440ab02f /src/org/traccar/processing | |
parent | 82edf57e1b93d5a5ca34294dc62e3620889c2341 (diff) | |
download | trackermap-server-d31f68d80a8e3ae75fa0c2f02b9ca258486a3cad.tar.gz trackermap-server-d31f68d80a8e3ae75fa0c2f02b9ca258486a3cad.tar.bz2 trackermap-server-d31f68d80a8e3ae75fa0c2f02b9ca258486a3cad.zip |
- Implement base manager classes as generics
- Remame getDeviceById and getDeviceByUniqueId functions
Diffstat (limited to 'src/org/traccar/processing')
-rw-r--r-- | src/org/traccar/processing/ComputedAttributesHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/processing/ComputedAttributesHandler.java b/src/org/traccar/processing/ComputedAttributesHandler.java index d6a762535..f1f371475 100644 --- a/src/org/traccar/processing/ComputedAttributesHandler.java +++ b/src/org/traccar/processing/ComputedAttributesHandler.java @@ -51,7 +51,7 @@ public class ComputedAttributesHandler extends BaseDataHandler { private MapContext prepareContext(Position position) { MapContext result = new MapContext(); if (mapDeviceAttributes) { - Device device = Context.getIdentityManager().getDeviceById(position.getDeviceId()); + Device device = Context.getIdentityManager().getById(position.getDeviceId()); if (device != null) { for (Object key : device.getAttributes().keySet()) { result.set((String) key, device.getAttributes().get(key)); @@ -86,7 +86,7 @@ public class ComputedAttributesHandler extends BaseDataHandler { @Override protected Position handlePosition(Position position) { - Collection<Attribute> attributes = Context.getAttributesManager().getItems(Attribute.class, + Collection<Attribute> attributes = Context.getAttributesManager().getItems( Context.getAttributesManager().getAllDeviceItems(position.getDeviceId())); for (Attribute attribute : attributes) { if (attribute.getAttribute() != null) { |