// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.06.15 at 04:11:53 PM CEST // package at.gv.egiz.moasig; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for PDFSignedRepsonse complex type. * *

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

 * <complexType name="PDFSignedRepsonse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="SignatureID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <choice>
 *           <element name="PDFSignature" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *           <element ref="{http://reference.e-government.gv.at/namespace/moa/20020822#}ErrorResponse"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PDFSignedRepsonse", propOrder = { "signatureID", "pdfSignature", "errorResponse" }) public class PDFSignedRepsonse { @XmlElement(name = "SignatureID") protected String signatureID; @XmlElement(name = "PDFSignature") protected byte[] pdfSignature; @XmlElement(name = "ErrorResponse") protected ErrorResponseType errorResponse; /** * Gets the value of the signatureID property. * * @return * possible object is * {@link String } * */ public String getSignatureID() { return signatureID; } /** * Sets the value of the signatureID property. * * @param value * allowed object is * {@link String } * */ public void setSignatureID(String value) { this.signatureID = value; } /** * Gets the value of the pdfSignature property. * * @return * possible object is * byte[] */ public byte[] getPDFSignature() { return pdfSignature; } /** * Sets the value of the pdfSignature property. * * @param value * allowed object is * byte[] */ public void setPDFSignature(byte[] value) { this.pdfSignature = value; } /** * Gets the value of the errorResponse property. * * @return * possible object is * {@link ErrorResponseType } * */ public ErrorResponseType getErrorResponse() { return errorResponse; } /** * Sets the value of the errorResponse property. * * @param value * allowed object is * {@link ErrorResponseType } * */ public void setErrorResponse(ErrorResponseType value) { this.errorResponse = value; } }