blob: d3d04941bdfdb88dcfdc2f8a291d24e89a727757 [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// 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: 2017.07.31 at 11:10:09 AM IST
//
package org.apache.xml.security.configuration;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for inOutAttrType.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* &lt;simpleType name="inOutAttrType"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
* &lt;enumeration value="IN"/&gt;
* &lt;enumeration value="OUT"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* </pre>
*
*/
@XmlType(name = "inOutAttrType", namespace = "http://www.xmlsecurity.org/NS/configuration")
@XmlEnum
public enum InOutAttrType {
IN,
OUT;
public String value() {
return name();
}
public static InOutAttrType fromValue(String v) {
return valueOf(v);
}
}