1 // 2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs 3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 4 // Any modifications to this file will be lost upon recompilation of the source schema. 5 // Generated on: 2009.07.17 at 01:03:24 AM CST 6 // 7 8 9 package org.apache.geronimo.xml.ns.loginconfig_1; 10 11 import javax.xml.bind.annotation.XmlEnum; 12 13 14 /** 15 * <p>Java class for control-flagType. 16 * 17 * <p>The following schema fragment specifies the expected content contained within this class. 18 * <p> 19 * <pre> 20 * <simpleType name="control-flagType"> 21 * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> 22 * <enumeration value="REQUIRED"/> 23 * <enumeration value="REQUISITE"/> 24 * <enumeration value="SUFFICIENT"/> 25 * <enumeration value="OPTIONAL"/> 26 * </restriction> 27 * </simpleType> 28 * </pre> 29 * 30 */ 31 @XmlEnum 32 public enum ControlFlagType { 33 34 REQUIRED, 35 REQUISITE, 36 SUFFICIENT, 37 OPTIONAL; 38 39 public String value() { 40 return name(); 41 } 42 43 public static ControlFlagType fromValue(String v) { 44 return valueOf(v); 45 } 46 47 }