use of org.gluu.oxauth.service.cdi.event.KeyGenerationEvent in project oxAuth by GluuFederation.
the class KeyGeneratorTimer method initTimer.
public void initTimer() {
log.info("Initializing Key Generator Timer");
this.isActive = new AtomicBoolean(false);
timerEvent.fire(new TimerEvent(new TimerSchedule(DEFAULT_INTERVAL, DEFAULT_INTERVAL), new KeyGenerationEvent(), Scheduled.Literal.INSTANCE));
this.lastFinishedTime = System.currentTimeMillis();
log.info("Initialized Key Generator Timer");
}
Aggregations