Go to most recent revision | View as "text/plain" | Blame | Last modification | View Log | Download | RSS feed
package net.brutex.sbm.wsclient;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for ReportAccessLevel.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* <simpleType name="ReportAccessLevel">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="PRIVATE"/>
* <enumeration value="GUEST"/>
* <enumeration value="USER"/>
* <enumeration value="MANAGER"/>
* </restriction>
* </simpleType>
* </pre>
*
*/
@XmlType(name = "ReportAccessLevel")
@XmlEnum
public enum ReportAccessLevel {
PRIVATE,
GUEST,
USER,
MANAGER;
public String value() {
return name();
}
public static ReportAccessLevel fromValue(String v) {
return valueOf(v);
}
}