org.smartdeveloperhub.jenkins.crawler.xml.ci.RunResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ci-jenkins-crawler Show documentation
Show all versions of ci-jenkins-crawler Show documentation
The Crawler for the Jenkins integration for the Continuous Integration Harvester of the Smart Developer Hub project
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.07.14 at 09:08:59 AM UTC
//
package org.smartdeveloperhub.jenkins.crawler.xml.ci;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RunResult.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="RunResult">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="NOT_BUILT"/>
* <enumeration value="SUCCESS"/>
* <enumeration value="FAILURE"/>
* <enumeration value="UNSTABLE"/>
* <enumeration value="ABORTED"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RunResult", namespace = "http://www.smartdeveloperhub.org/harvester/ci/model/v1")
@XmlEnum
public enum RunResult {
NOT_BUILT,
SUCCESS,
FAILURE,
UNSTABLE,
ABORTED;
public String value() {
return name();
}
public static RunResult fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy