use of org.xdi.service.timer.event.TimerEvent in project oxTrust by GluuFederation.
the class EntityIDMonitoringService method initTimer.
public void initTimer() {
log.debug("Initializing EntityId Monitoring Timer");
this.isActive = new AtomicBoolean(false);
final int delay = 30;
final int interval = DEFAULT_INTERVAL;
timerEvent.fire(new TimerEvent(new TimerSchedule(delay, interval), new EntityIdMonitoringEvent(), Scheduled.Literal.INSTANCE));
}
use of org.xdi.service.timer.event.TimerEvent in project oxTrust by GluuFederation.
the class ConfigurationFactory method initTimer.
public void initTimer() {
log.debug("Initializing Configuration Timer");
final int delay = 30;
final int interval = DEFAULT_INTERVAL;
timerEvent.fire(new TimerEvent(new TimerSchedule(delay, interval), new ConfigurationEvent(), Scheduled.Literal.INSTANCE));
}
use of org.xdi.service.timer.event.TimerEvent in project oxTrust by GluuFederation.
the class LdapStatusTimer method initTimer.
public void initTimer() {
log.info("Initializing Ldap Status Timer");
this.isActive = new AtomicBoolean(false);
timerEvent.fire(new TimerEvent(new TimerSchedule(DEFAULT_INTERVAL, DEFAULT_INTERVAL), new LdapStatusEvent(), Scheduled.Literal.INSTANCE));
}
use of org.xdi.service.timer.event.TimerEvent in project oxTrust by GluuFederation.
the class LogDir method initTimer.
public void initTimer() {
log.info("Initializing Log File Size Checker Timer");
this.isActive = new AtomicBoolean(false);
final int delay = 2 * 60;
final int interval = DEFAULT_INTERVAL;
timerEvent.fire(new TimerEvent(new TimerSchedule(delay, interval), new LogFileSizeChekerEvent(), Scheduled.Literal.INSTANCE));
}
use of org.xdi.service.timer.event.TimerEvent in project oxTrust by GluuFederation.
the class StatusCheckerDaily method initTimer.
public void initTimer() {
log.info("Initializing Daily Status Cheker Timer");
this.isActive = new AtomicBoolean(false);
final int delay = 1 * 60;
final int interval = DEFAULT_INTERVAL;
timerEvent.fire(new TimerEvent(new TimerSchedule(delay, interval), new StatusCheckerDailyEvent(), Scheduled.Literal.INSTANCE));
}
Aggregations