Job Operations
Job Object Fields
Field
Description
io_cron_expression
Controls the periodicity of job execution. Syntax for this expression is documented at http://www.quartz-scheduler.org/documentation/quartz-2.2.x/tutorials/crontrigger.html.
io_operation
Operation that is executed when the job runs.
io_user
User who runs the job.
io_name
Name of the job.
io_description
Description of the job.
Create Job
Jobs.create(String cronExpression, UUID operationUUID, UUID userUUID, String name, String description)
Parameter
Description
cronExpression
Cron expression that defines schedule execution for the job.
operationuUUID
Operation that the job executes.
userUUID
User who executes the operation.
name
Job name.
description
Job description.
Update Job
Jobs.update(UUID jobUUID, String cronExpression, UUID operationUUID, UUID userUUID, String name, String description)
Parameter
Description
jobUUID
UUID of the job to update.
cronExpression
Cron expression that defines schedule execution for the job.
operationuUUID
Operation that the job executes.
userUUID
User who executes the operation.
name
Job name.
description
Job description.
Stop Job
Jobs.stop(UUID jobUUID)
Parameter
Description
jobUUID
Job to be stopped.
Start Job
Jobs.start(UUID jobUUID)
Parameter
Description
jobUUID
Job to be started.
Delete Job
Jobs.delete(UUID jobUUID)
Parameter
Description
jobUUID
Job to be deleted.
Get Information for All Scheduled Jobs
Jobs.getScheduledJobsInfo()
For more information:
Was this helpful?