public static enum Events.JobChannel extends Enum<Events.JobChannel>
EventProps.Job for pre-defined job channel event properties.| Enum Constant and Description | 
|---|
| job_crud_createdJob created. | 
| job_crud_deletedJob deleted. | 
| job_crud_renamedJob renamed. | 
| job_crud_updatedJob updated. | 
| job_run_artifact_fingerprintingJob run artifact fingerprinting. | 
| job_run_endedJob run ended. | 
| job_run_pausedJob run paused. | 
| job_run_queue_blockedJob run queue blocked. | 
| job_run_queue_buildableJob run queue buildable. | 
| job_run_queue_enterJob run queue entered. | 
| job_run_queue_leftJob run queue left. | 
| job_run_queue_task_completeJob run queue task complete. | 
| job_run_scm_checkoutJob run SCM checkout. | 
| job_run_startedJob run started. | 
| job_run_unpausedJob run unpaused. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Events.JobChannel | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Events.JobChannel[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Events.JobChannel job_crud_created
ItemListener.onCreated(Item)public static final Events.JobChannel job_crud_deleted
ItemListener.onDeleted(Item)public static final Events.JobChannel job_crud_updated
ItemListener.onUpdated(Item)public static final Events.JobChannel job_crud_renamed
EventProps.Item.item_rename_before, 
EventProps.Item.item_rename_after, 
ItemListener.onRenamed(Item, String, String)public static final Events.JobChannel job_run_queue_enter
QueueListener.onEnterWaiting(Queue.WaitingItem)public static final Events.JobChannel job_run_queue_buildable
QueueListener.onEnterBuildable(Queue.BuildableItem)public static final Events.JobChannel job_run_queue_left
QueueListener.onLeft(Queue.LeftItem)public static final Events.JobChannel job_run_queue_blocked
QueueListener.onEnterBlocked(Queue.BlockedItem)public static final Events.JobChannel job_run_started
public static final Events.JobChannel job_run_scm_checkout
public static final Events.JobChannel job_run_paused
public static final Events.JobChannel job_run_unpaused
public static final Events.JobChannel job_run_ended
public static final Events.JobChannel job_run_artifact_fingerprinting
public static final Events.JobChannel job_run_queue_task_complete
Fires after the run has ended.
public static final String NAME
public static Events.JobChannel[] values()
for (Events.JobChannel c : Events.JobChannel.values()) System.out.println(c);
public static Events.JobChannel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016–2019. All rights reserved.