aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/events/CommandResultEventHandler.java
blob: 9dbdb4b4c72119d0e51c47678b649595fac3aac1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.traccar.events;

import java.util.ArrayList;
import java.util.Collection;

import org.traccar.BaseEventHandler;
import org.traccar.model.Event;
import org.traccar.model.Position;

public class CommandResultEventHandler extends BaseEventHandler {

    @Override
    protected Collection<Event> analizePosition(Position position) {
        Object commandResult = position.getAttributes().get(Position.KEY_RESULT);
        if (commandResult != null) {
            Collection<Event> events = new ArrayList<>();
            events.add(new Event(Event.TYPE_COMMAND_RESULT, position.getDeviceId(), position.getId()));
            return events;
        }
        return null;
    }

}