public interface ScheduledJob
Modifier and Type | Method and Description |
---|---|
String |
getCron()
A cron expression used to drive the schedule for the job execution.
|
Map<String,ScheduledJobDetail> |
getDetails()
Collection of detailed information for the job
|
Boolean |
getEnabled()
Whether the job is available for execution.
|
Boolean |
getExecuted()
Whether or not the job has been executed
|
Long |
getId() |
String |
getName()
The recognizable name for the job
|
Date |
getTargetDate()
The date on which a single use job should execute
|
String |
getType()
An arbitrary string representing the identity of this job
|
Date |
getUpdated()
The date on which the status of the job changed.
|
void |
setCron(String cron) |
void |
setDetails(Map<String,ScheduledJobDetail> details) |
void |
setEnabled(Boolean enabled) |
void |
setExecuted(Boolean executed) |
void |
setId(Long id) |
void |
setName(String name) |
void |
setTargetDate(Date targetDate) |
void |
setType(String type) |
void |
setUpdated(Date updated) |
Long getId()
void setId(Long id)
String getType()
void setType(String type)
Boolean getEnabled()
void setEnabled(Boolean enabled)
Date getUpdated()
void setUpdated(Date updated)
String getCron()
void setCron(String cron)
Map<String,ScheduledJobDetail> getDetails()
void setDetails(Map<String,ScheduledJobDetail> details)
String getName()
void setName(String name)
Date getTargetDate()
void setTargetDate(Date targetDate)
Boolean getExecuted()
void setExecuted(Boolean executed)
Copyright © 2019. All rights reserved.