blob: cdc9be7ab1c5d18f14c735c9ddef4eeb31db488d (
plain)
1
2
3
4
5
6
7
8
|
package org.traccar.command;
import org.traccar.database.ActiveDevice;
import org.traccar.command.GpsCommand;
public interface CommandTemplate<T extends GpsCommand> {
Object applyTo(ActiveDevice activeDevice, T command);
}
|