/**
  * DOC amaumont JobServerCleaner constructor comment.
  *
  * @param frequencyCleaningAction in seconds
  * @param maxDurationBeforeCleaningOldExecutionsLogs in seconds
  * @param maxOldExecutionsLogs
  * @param maxDurationBeforeCleaningOldJobs in seconds
  * @param maxOldJobs
  */
 public SchedulerDataCleaner() {
   super(
       SchedulerDataCleaner.class.getSimpleName(),
       SchedulerConfiguration.getInstance().getFrequencyCleaningAction());
   SchedulerConfiguration schedulerConfiguration = SchedulerConfiguration.getInstance();
   this.maxDurationBeforeCleaningOldExecutionsLogs =
       schedulerConfiguration.getMaxDurationBeforeCleaningOldExecutionsLogs();
   this.maxOldExecutionsLogs = schedulerConfiguration.getMaxOldExecutionsLogs();
   this.maxDurationBeforeCleaningOldJobs =
       schedulerConfiguration.getMaxDurationBeforeCleaningOldJobs();
   this.maxOldJobs = schedulerConfiguration.getMaxOldJobs();
 }