All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rundeck.api.domain.RundeckWFExecState Maven / Gradle / Ivy

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,;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy