|
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.
|
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. |
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. |
Jobs.stop(UUID jobUUID)
Parameter | Description |
|---|---|
jobUUID | Job to be stopped. |
Jobs.start(UUID jobUUID)
Parameter | Description |
|---|---|
jobUUID | Job to be started. |
Jobs.delete(UUID jobUUID)
Parameter | Description |
|---|---|
jobUUID | Job to be deleted. |
Jobs.getScheduledJobsInfo()