org.hudsonci.maven.model.LogLevelDTO Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.12.06 at 07:15:37 PM GMT
//
package org.hudsonci.maven.model;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
import com.thoughtworks.xstream.annotations.XStreamAlias;
/**
* Java class for logLevel.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="logLevel">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="OFF"/>
* <enumeration value="TRACE"/>
* <enumeration value="DEBUG"/>
* <enumeration value="INFO"/>
* <enumeration value="WARN"/>
* <enumeration value="ERROR"/>
* <enumeration value="ALL"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "logLevel")
@XmlEnum
@XStreamAlias("logLevel")
@Generated(value = "XJC hudson-jaxb-ri-2.1-2", date = "2011-12-06T19:15:37")
public enum LogLevelDTO {
OFF,
TRACE,
DEBUG,
INFO,
WARN,
ERROR,
ALL;
public String value() {
return name();
}
public static LogLevelDTO fromValue(String v) {
return valueOf(v);
}
}