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

org.smartdeveloperhub.jenkins.crawler.xml.ci.RunStatus Maven / Gradle / Ivy

Go to download

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 RunStatus. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="RunStatus">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="RUNNING"/>
 *     <enumeration value="FINISHED"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "RunStatus", namespace = "http://www.smartdeveloperhub.org/harvester/ci/model/v1") @XmlEnum public enum RunStatus { RUNNING, FINISHED; public String value() { return name(); } public static RunStatus fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy