use of org.gluu.oxtrust.service.cdi.event.EntityIdMonitoringEvent 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));
}
Aggregations