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

org.kohsuke.github.GHDeploymentState Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha-2
Show newest version
package org.kohsuke.github;

import org.kohsuke.github.internal.Previews;

// TODO: Auto-generated Javadoc
/**
 * Represents the state of deployment.
 */
public enum GHDeploymentState {

    /** The pending. */
    PENDING,

    /** The success. */
    SUCCESS,

    /** The error. */
    ERROR,

    /** The failure. */
    FAILURE,

    /**
     * The state of the deployment currently reflects it's in progress.
     */
    @Preview(Previews.FLASH)
    IN_PROGRESS,

    /**
     * The state of the deployment currently reflects it's queued up for processing.
     */
    @Preview(Previews.FLASH)
    QUEUED,

    /**
     * The state of the deployment currently reflects it's no longer active.
     */
    @Preview(Previews.ANT_MAN)
    INACTIVE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy