Interface CronJobDao
-
- All Superinterfaces:
Dao
@Deprecated public interface CronJobDao extends Dao
Deprecated.since ages - useCronJobDao
The cronjob DAO interface. Used for finding the cronjob and jobs in the backend.- Since:
- 4.0
- Spring Bean ID:
- cronJobDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
findAbortable(CronJobModel cronJobModel)
Deprecated.Finds a given cronJobModel as abortable or not.java.util.List<CronJobModel>
findCronJobs(java.lang.String code)
Deprecated.Search with the given code forCronJob
items.java.util.List<JobModel>
findJobs(java.lang.String code)
Deprecated.since ages - useJobDao
instead.boolean
findPerformable(CronJobModel cronJobModel)
Deprecated.Finds a given cronJobModel as performable or not.java.util.List<CronJobModel>
findRunningCronJobs()
Deprecated.Finds allCronJobModel
instance in state RUNNING or RUNNINGRESTART.boolean
findUndoable(CronJobModel cronJobModel)
Deprecated.Finds a given cronJobModel as undoable or not.
-
-
-
Method Detail
-
findCronJobs
java.util.List<CronJobModel> findCronJobs(java.lang.String code)
Deprecated.Search with the given code forCronJob
items.- Parameters:
code
- the CronJob code- Returns:
- a List with
CronJobModel
s. Returns an empty List if nothing was found.
-
findJobs
@Deprecated java.util.List<JobModel> findJobs(java.lang.String code)
Deprecated.since ages - useJobDao
instead.Search with the given code forJob
items.- Parameters:
code
- the Job code- Returns:
- a List with
JobModel
s. Returns an empty List if nothing was found.
-
findRunningCronJobs
java.util.List<CronJobModel> findRunningCronJobs()
Deprecated.Finds allCronJobModel
instance in state RUNNING or RUNNINGRESTART.
-
findPerformable
boolean findPerformable(CronJobModel cronJobModel)
Deprecated.Finds a given cronJobModel as performable or not.
-
findAbortable
boolean findAbortable(CronJobModel cronJobModel)
Deprecated.Finds a given cronJobModel as abortable or not.
-
findUndoable
boolean findUndoable(CronJobModel cronJobModel)
Deprecated.Finds a given cronJobModel as undoable or not.
-
-