com.offbytwo.jenkins.model.BuildResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jenkins-client Show documentation
Show all versions of jenkins-client Show documentation
A Jenkins API client for Java
/*
* Copyright (c) 2013 Cosmin Stejerean, Karl Heinz Marbaise, and contributors.
*
* Distributed under the MIT license: http://opensource.org/licenses/MIT
*/
package com.offbytwo.jenkins.model;
public enum BuildResult {
FAILURE, UNSTABLE, REBUILDING, BUILDING,
/**
* This means a job was already running and has been aborted.
*/
ABORTED,
/**
*
*/
SUCCESS,
/**
* ?
*/
UNKNOWN,
/**
* This is returned if a job has never been built.
*/
NOT_BUILT,
/**
* This will be the result of a job in cases where it has been cancelled
* during the time in the queue.
*/
CANCELLED
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy