public final enum

RundeckWFExecState

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.rundeck.api.domain.RundeckWFExecState

Class Overview

An execution state for a workflow or node step

Summary

Enum Values
RundeckWFExecState  ABORTED  Execution was aborted  
RundeckWFExecState  FAILED  Finished with a failure  
RundeckWFExecState  NODE_MIXED  Mixed states among nodes  
RundeckWFExecState  NODE_PARTIAL_SUCCEEDED  Partial success for some nodes  
RundeckWFExecState  NOT_STARTED  After waiting the execution did not start  
RundeckWFExecState  RUNNING  Currently running  
RundeckWFExecState  RUNNING_HANDLER  Running error handler  
RundeckWFExecState  SUCCEEDED  Finished running successfully  
RundeckWFExecState  WAITING  Waiting to start running  
Public Methods
static RundeckWFExecState valueOf(String name)
final static RundeckWFExecState[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final RundeckWFExecState ABORTED

Execution was aborted

public static final RundeckWFExecState FAILED

Finished with a failure

public static final RundeckWFExecState NODE_MIXED

Mixed states among nodes

public static final RundeckWFExecState NODE_PARTIAL_SUCCEEDED

Partial success for some nodes

public static final RundeckWFExecState NOT_STARTED

After waiting the execution did not start

public static final RundeckWFExecState RUNNING

Currently running

public static final RundeckWFExecState RUNNING_HANDLER

Running error handler

public static final RundeckWFExecState SUCCEEDED

Finished running successfully

public static final RundeckWFExecState WAITING

Waiting to start running

Public Methods

public static RundeckWFExecState valueOf (String name)

public static final RundeckWFExecState[] values ()