// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.08.03 at 06:49:55 AM PDT // package org.ebayopensource.turmeric.common.config; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ErrorCategory. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="ErrorCategory"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="REQUEST"/> * <enumeration value="SYSTEM"/> * <enumeration value="APPLICATION"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "ErrorCategory") @XmlEnum public enum ErrorCategory { REQUEST, SYSTEM, APPLICATION; public String value() { return name(); } public static ErrorCategory fromValue(String v) { return valueOf(v); } }