use of org.gluu.oxauth.service.cdi.event.AuthConfigurationEvent in project oxAuth by GluuFederation.
the class AppInitializer method initTimer.
public void initTimer() {
this.isActive = new AtomicBoolean(false);
this.setLastFinishedTime(System.currentTimeMillis());
timerEvent.fire(new TimerEvent(new TimerSchedule(60, DEFAULT_INTERVAL), new AuthConfigurationEvent(), Scheduled.Literal.INSTANCE));
}
Aggregations