use of org.olat.modules.reminder.ReminderService in project openolat by klemens.
the class ReminderJob method executeWithDB.
@Override
public void executeWithDB(JobExecutionContext context) throws JobExecutionException {
ReminderModule reminderModule = CoreSpringFactory.getImpl(ReminderModule.class);
if (reminderModule.isEnabled()) {
ReminderService reminderService = CoreSpringFactory.getImpl(ReminderService.class);
reminderService.remindAll();
}
}
Aggregations