org.rundeck.api.domain.RundeckWFExecState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rundeck-api-java-client Show documentation
Show all versions of rundeck-api-java-client Show documentation
Java client for the Rundeck REST API
The newest version!
package org.rundeck.api.domain;
/**
* An execution state for a workflow or node step
*/
public enum RundeckWFExecState {
/**
* Waiting to start running
*/
WAITING,
/**
* Currently running
*/
RUNNING,
/**
* Running error handler
*/
RUNNING_HANDLER,
/**
* Finished running successfully
*/
SUCCEEDED,
/**
* Finished with a failure
*/
FAILED,
/**
* Execution was aborted
*/
ABORTED,
/**
* Partial success for some nodes
*/
NODE_PARTIAL_SUCCEEDED,
/**
* Mixed states among nodes
*/
NODE_MIXED,
/**
* After waiting the execution did not start
*/
NOT_STARTED,;
}