package at.gv.util.xsd.saml.protocol; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** *

Java class for StatusCodeType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="StatusCodeType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}StatusCode" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="Value" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StatusCodeType", propOrder = { "statusCode" }) public class StatusCodeType { @XmlElement(name = "StatusCode") protected StatusCodeType statusCode; @XmlAttribute(name = "Value", required = true) protected QName value; /** * Gets the value of the statusCode property. * * @return * possible object is * {@link StatusCodeType } * */ public StatusCodeType getStatusCode() { return statusCode; } /** * Sets the value of the statusCode property. * * @param value * allowed object is * {@link StatusCodeType } * */ public void setStatusCode(StatusCodeType value) { this.statusCode = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link QName } * */ public QName getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link QName } * */ public void setValue(QName value) { this.value = value; } }