public enum JobReferenceFailureReason extends java.lang.Enum<JobReferenceFailureReason> implements com.dtolabs.rundeck.core.execution.workflow.steps.FailureReason
| Enum Constant and Description |
|---|
ExecutionsDisabled
Disabled executions on referenced job
|
InvalidOptions
Input options are not valid for the job
|
JobFailed
The underlying job failed
|
NoMatchedNodes
Job node filters match no nodes
|
NotFound
Cannot find the job that was identified
|
Unauthorized
Unauthorized to run the job
|
| Modifier and Type | Method and Description |
|---|---|
static JobReferenceFailureReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JobReferenceFailureReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobReferenceFailureReason JobFailed
public static final JobReferenceFailureReason NotFound
public static final JobReferenceFailureReason Unauthorized
public static final JobReferenceFailureReason InvalidOptions
public static final JobReferenceFailureReason NoMatchedNodes
public static final JobReferenceFailureReason ExecutionsDisabled
public static JobReferenceFailureReason[] values()
for (JobReferenceFailureReason c : JobReferenceFailureReason.values()) System.out.println(c);
public static JobReferenceFailureReason valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null