Modifier and Type | Method and Description |
---|---|
String |
ViewScheduledJobsAction.getCronExpression(ScheduledJobKey key) |
ManagedScheduledCronJob |
ViewScheduledJobsAction.getManagedScheduledCronJob(ScheduledJobKey key) |
ManagedScheduledJob |
ViewScheduledJobsAction.getManagedScheduledJob(ScheduledJobKey key) |
Modifier and Type | Method and Description |
---|---|
ScheduledJobKey |
ScheduledJobStatus.getKey() |
ScheduledJobKey |
ManagedScheduledJob.getScheduledJobKey() |
ScheduledJobKey |
AbstractManagedScheduledJob.getScheduledJobKey() |
static ScheduledJobKey |
ScheduledJobKey.valueOf(org.quartz.JobDetail jobDetail) |
Constructor and Description |
---|
ScheduledJobStatus(ScheduledJobKey scheduledJobKey,
List<ScheduledJobHistory> existingHistory) |
Modifier and Type | Method and Description |
---|---|
void |
DefaultAuditService.auditAction(ScheduledJobKey jobKey,
String action) |
void |
AuditService.auditAction(ScheduledJobKey jobKey,
String action)
Audit's a simple action against a job, such as run, enable, disable.
|
void |
DefaultAuditService.auditScheduleChange(ScheduledJobKey jobKey,
String oldValue,
String newValue) |
void |
AuditService.auditScheduleChange(ScheduledJobKey jobKey,
String oldValue,
String newValue)
Audits a schedule change to a job.
|
Modifier and Type | Method and Description |
---|---|
void |
ScheduledJobManager.disable(ScheduledJobKey key)
Disables the specified job, and removes it from the scheduler.
|
void |
DefaultScheduledJobManager.disable(ScheduledJobKey key) |
void |
ScheduledJobManager.enable(ScheduledJobKey key)
Enables the specified job, and adds it from the scheduler.
|
void |
DefaultScheduledJobManager.enable(ScheduledJobKey key) |
String |
ScheduledJobManager.getCronExpression(ScheduledJobKey key)
Gets the currently configured cron expression, or the default value if none has been configured.
|
String |
DefaultScheduledJobManager.getCronExpression(ScheduledJobKey key) |
ManagedScheduledJob |
ManagedScheduledJobRegistry.getManagedScheduledJob(ScheduledJobKey key)
Returns a specific registered job in the system.
|
ManagedScheduledJob |
DefaultManagedScheduledJobRegistry.getManagedScheduledJob(ScheduledJobKey key) |
ScheduledJobStatus |
ScheduledJobManager.getScheduledJob(ScheduledJobKey key)
Gets the current status for a single scheduled job.
|
ScheduledJobStatus |
DefaultScheduledJobManager.getScheduledJob(ScheduledJobKey key) |
boolean |
ManagedScheduledJobRegistry.isManaged(ScheduledJobKey key)
Checks if the specified job is being managed.
|
boolean |
DefaultManagedScheduledJobRegistry.isManaged(ScheduledJobKey key) |
void |
ScheduledJobManager.runNow(ScheduledJobKey key)
Schedules the specified to run immediately.
|
void |
DefaultScheduledJobManager.runNow(ScheduledJobKey key) |
Date |
ScheduledJobManager.updateSchedule(ScheduledJobKey key,
String newCronSchedule)
Updates stored schedule and reschedules the specified job.
|
Date |
DefaultScheduledJobManager.updateSchedule(ScheduledJobKey key,
String newCronSchedule) |
Modifier and Type | Method and Description |
---|---|
void |
ScheduledJobDao.addHistory(ScheduledJobKey key,
ScheduledJobHistory history,
Date nextOccurence,
boolean persistHistory)
Adds to an event to the history, and updates the nextOccurence in the ScheduledJobStatus.
|
void |
ClusterSafeScheduledJobDao.addHistory(ScheduledJobKey key,
ScheduledJobHistory history,
Date nextOccurence,
boolean persistHistory) |
void |
CachedScheduledJobDao.addHistory(ScheduledJobKey key,
ScheduledJobHistory history,
Date nextOccurence,
boolean persistHistory) |
ScheduledJobConfiguration |
ScheduledJobDao.getScheduledJobConfiguration(ScheduledJobKey key)
Gets the job configuration for the specified job.
|
ScheduledJobConfiguration |
ClusterSafeScheduledJobDao.getScheduledJobConfiguration(ScheduledJobKey key) |
ScheduledJobConfiguration |
CachedScheduledJobDao.getScheduledJobConfiguration(ScheduledJobKey key) |
String |
ScheduledJobDao.getScheduledJobDefaultCronExpression(ScheduledJobKey key)
Gets the default cron expression for the job.
|
String |
ClusterSafeScheduledJobDao.getScheduledJobDefaultCronExpression(ScheduledJobKey key) |
String |
CachedScheduledJobDao.getScheduledJobDefaultCronExpression(ScheduledJobKey key) |
List<ScheduledJobHistory> |
ScheduledJobDao.getScheduledJobHistory(ScheduledJobKey key)
The the job history for a specified job.
|
List<ScheduledJobHistory> |
ClusterSafeScheduledJobDao.getScheduledJobHistory(ScheduledJobKey key) |
List<ScheduledJobHistory> |
CachedScheduledJobDao.getScheduledJobHistory(ScheduledJobKey key) |
ScheduledJobStatus |
ScheduledJobDao.getScheduledJobStatus(ScheduledJobKey key)
Gets the specified job's status.
|
ScheduledJobStatus |
ClusterSafeScheduledJobDao.getScheduledJobStatus(ScheduledJobKey key) |
ScheduledJobStatus |
CachedScheduledJobDao.getScheduledJobStatus(ScheduledJobKey key) |
void |
ScheduledJobDao.saveScheduledJobConfiguration(ScheduledJobKey key,
ScheduledJobConfiguration jobConfiguration)
Stores the job configuration.
|
void |
ClusterSafeScheduledJobDao.saveScheduledJobConfiguration(ScheduledJobKey key,
ScheduledJobConfiguration job) |
void |
CachedScheduledJobDao.saveScheduledJobConfiguration(ScheduledJobKey key,
ScheduledJobConfiguration job) |
void |
ScheduledJobDao.saveScheduledJobDefaultCronExpression(ScheduledJobKey key,
String cronExpressionDefault)
Stores the default cron expression for a job.
|
void |
ClusterSafeScheduledJobDao.saveScheduledJobDefaultCronExpression(ScheduledJobKey key,
String cronExpressionDefault) |
void |
CachedScheduledJobDao.saveScheduledJobDefaultCronExpression(ScheduledJobKey key,
String cronExpressionDefault) |
void |
ScheduledJobDao.saveScheduledJobStatus(ScheduledJobKey key,
ScheduledJobStatus status)
Stores the status for the specified job.
|
void |
ClusterSafeScheduledJobDao.saveScheduledJobStatus(ScheduledJobKey key,
ScheduledJobStatus status) |
void |
CachedScheduledJobDao.saveScheduledJobStatus(ScheduledJobKey key,
ScheduledJobStatus status) |
void |
ScheduledJobDao.updateNextOccurence(ScheduledJobKey key,
Date nextOccurence)
Updates the nextOccurence in the ScheduledJobStatus.
|
void |
ClusterSafeScheduledJobDao.updateNextOccurence(ScheduledJobKey key,
Date nextOccurence) |
void |
CachedScheduledJobDao.updateNextOccurence(ScheduledJobKey key,
Date nextOccurence) |
void |
ScheduledJobDao.updateStatus(ScheduledJobKey key,
ExecutionStatus status)
Updates the status in the corresponding ScheduledJobStatus for the job.
|
void |
ClusterSafeScheduledJobDao.updateStatus(ScheduledJobKey key,
ExecutionStatus status) |
void |
CachedScheduledJobDao.updateStatus(ScheduledJobKey key,
ExecutionStatus status) |
Modifier and Type | Field and Description |
---|---|
static ScheduledJobKey |
ScheduleUtil.BACKUP_JOB_KEY |
Copyright © 2003–2016 Atlassian. All rights reserved.