use of org.gluu.oxtrust.service.cdi.event.SvnSyncEvent in project oxTrust by GluuFederation.
the class SvnSyncTimer method initTimer.
public void initTimer() {
log.debug("Initializing SVN Sync Timer");
if (!appConfiguration.isPersistSVN()) {
return;
}
final int delay = 30;
final int interval = DEFAULT_INTERVAL;
timerEvent.fire(new TimerEvent(new TimerSchedule(delay, interval), new SvnSyncEvent(), Scheduled.Literal.INSTANCE));
}
Aggregations