package at.gv.util.xsd.saml.protocol; import java.math.BigInteger; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import at.gv.util.xsd.xmldsig.SignatureType; /** *

Java class for ResponseAbstractType complex type. * *

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

 * <complexType name="ResponseAbstractType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="ResponseID" use="required" type="{urn:oasis:names:tc:SAML:1.0:assertion}IDType" />
 *       <attribute name="InResponseTo" type="{urn:oasis:names:tc:SAML:1.0:assertion}IDReferenceType" />
 *       <attribute name="MajorVersion" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *       <attribute name="MinorVersion" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *       <attribute name="IssueInstant" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="Recipient" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResponseAbstractType", propOrder = { "signature" }) @XmlSeeAlso({ ResponseType.class }) public abstract class ResponseAbstractType { @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#") protected SignatureType signature; @XmlAttribute(name = "ResponseID", required = true) protected String responseID; @XmlAttribute(name = "InResponseTo") protected String inResponseTo; @XmlAttribute(name = "MajorVersion", required = true) protected BigInteger majorVersion; @XmlAttribute(name = "MinorVersion", required = true) protected BigInteger minorVersion; @XmlAttribute(name = "IssueInstant", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar issueInstant; @XmlAttribute(name = "Recipient") @XmlSchemaType(name = "anyURI") protected String recipient; /** * Gets the value of the signature property. * * @return * possible object is * {@link SignatureType } * */ public SignatureType getSignature() { return signature; } /** * Sets the value of the signature property. * * @param value * allowed object is * {@link SignatureType } * */ public void setSignature(SignatureType value) { this.signature = value; } /** * Gets the value of the responseID property. * * @return * possible object is * {@link String } * */ public String getResponseID() { return responseID; } /** * Sets the value of the responseID property. * * @param value * allowed object is * {@link String } * */ public void setResponseID(String value) { this.responseID = value; } /** * Gets the value of the inResponseTo property. * * @return * possible object is * {@link String } * */ public String getInResponseTo() { return inResponseTo; } /** * Sets the value of the inResponseTo property. * * @param value * allowed object is * {@link String } * */ public void setInResponseTo(String value) { this.inResponseTo = value; } /** * Gets the value of the majorVersion property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMajorVersion() { return majorVersion; } /** * Sets the value of the majorVersion property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMajorVersion(BigInteger value) { this.majorVersion = value; } /** * Gets the value of the minorVersion property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMinorVersion() { return minorVersion; } /** * Sets the value of the minorVersion property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMinorVersion(BigInteger value) { this.minorVersion = value; } /** * Gets the value of the issueInstant property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getIssueInstant() { return issueInstant; } /** * Sets the value of the issueInstant property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setIssueInstant(XMLGregorianCalendar value) { this.issueInstant = value; } /** * Gets the value of the recipient property. * * @return * possible object is * {@link String } * */ public String getRecipient() { return recipient; } /** * Sets the value of the recipient property. * * @param value * allowed object is * {@link String } * */ public void setRecipient(String value) { this.recipient = value; } }