TimerImpl timerImpl = dbSession.get(TimerImpl.class, timerDbid);
if (timerImpl == null) {
log.debug("timer not found: " + timerDbid);
return null; // i.e. delete this timer
}
return timerImpl.execute(environment) ? null : timerImpl.getDueDate();
}
public String toString() {
return ExecuteTimerCmd.class.getSimpleName() + '(' + timerDbid + ')';
}