Interface CronJobDao
- All Superinterfaces:
Dao
Deprecated, for removal: This API element is subject to removal in a future version.
The cronjob DAO interface. Used for finding the cronjob and jobs in the backend.
- Since:
- 4.0
- Spring Bean ID:
- cronJobDao
-
Method Summary
Modifier and TypeMethodDescriptionbooleanfindAbortable(CronJobModel cronJobModel) Deprecated, for removal: This API element is subject to removal in a future version.Finds a given cronJobModel as abortable or not.findCronJobs(String code) Deprecated, for removal: This API element is subject to removal in a future version.Search with the given code forCronJobitems.Deprecated, for removal: This API element is subject to removal in a future version.since ages - useJobDaoinstead.booleanfindPerformable(CronJobModel cronJobModel) Deprecated, for removal: This API element is subject to removal in a future version.Finds a given cronJobModel as performable or not.Deprecated, for removal: This API element is subject to removal in a future version.Finds allCronJobModelinstance in state RUNNING or RUNNINGRESTART.booleanfindUndoable(CronJobModel cronJobModel) Deprecated, for removal: This API element is subject to removal in a future version.Finds a given cronJobModel as undoable or not.
-
Method Details
-
findCronJobs
Deprecated, for removal: This API element is subject to removal in a future version.Search with the given code forCronJobitems.- Parameters:
code- the CronJob code- Returns:
- a List with
CronJobModels. Returns an empty List if nothing was found.
-
findJobs
Deprecated, for removal: This API element is subject to removal in a future version.since ages - useJobDaoinstead.Search with the given code forJobitems.- Parameters:
code- the Job code- Returns:
- a List with
JobModels. Returns an empty List if nothing was found.
-
findRunningCronJobs
List<CronJobModel> findRunningCronJobs()Deprecated, for removal: This API element is subject to removal in a future version.Finds allCronJobModelinstance in state RUNNING or RUNNINGRESTART. -
findPerformable
Deprecated, for removal: This API element is subject to removal in a future version.Finds a given cronJobModel as performable or not. -
findAbortable
Deprecated, for removal: This API element is subject to removal in a future version.Finds a given cronJobModel as abortable or not. -
findUndoable
Deprecated, for removal: This API element is subject to removal in a future version.Finds a given cronJobModel as undoable or not.
-
CronJobDao