Interface ImportCockpitCronJobLogDao
-
- All Known Implementing Classes:
DefaultImportCockpitCronJobLogDao
public interface ImportCockpitCronJobLogDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<JobLogModel>findRecentLogsByCronJob(ImportCockpitCronJobModel cronJobModel)Returns a list of the latest logs created by the actual cronjob.java.util.List<JobLogModel>findRecentLogsByCronJob(ImportCockpitCronJobModel cronJobModel, int count, boolean ascending)Returns a list of the latest logs created by the actual cronjob.
-
-
-
Method Detail
-
findRecentLogsByCronJob
java.util.List<JobLogModel> findRecentLogsByCronJob(ImportCockpitCronJobModel cronJobModel)
Returns a list of the latest logs created by the actual cronjob.- Parameters:
cronJobModel-- Returns:
- list of the latest logs created by the actual cronjob
-
findRecentLogsByCronJob
java.util.List<JobLogModel> findRecentLogsByCronJob(ImportCockpitCronJobModel cronJobModel, int count, boolean ascending)
Returns a list of the latest logs created by the actual cronjob.- Parameters:
cronJobModel-count-ascending-- Returns:
- list of the latest logs created by the actual cronjob
-
-