org.kohsuke.github.GHDeploymentState Maven / Gradle / Ivy
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