// // 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 java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** *

Java class for CreatePDFSignatureRequestType complex type. * *

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

 * <complexType name="CreatePDFSignatureRequestType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="KeyIdentifier" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}KeyIdentifierType"/>
 *         <element name="SingleSignatureInfo" maxOccurs="unbounded">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="PDFDocument" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *                   <element name="SignatureProfile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="SignaturePosition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="SignatureID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CreatePDFSignatureRequestType", propOrder = { "keyIdentifier", "singleSignatureInfo" }) @XmlSeeAlso({ CreatePDFSignatureRequest.class }) public class CreatePDFSignatureRequestType { @XmlElement(name = "KeyIdentifier", required = true) protected String keyIdentifier; @XmlElement(name = "SingleSignatureInfo", required = true) protected List singleSignatureInfo; /** * Gets the value of the keyIdentifier property. * * @return * possible object is * {@link String } * */ public String getKeyIdentifier() { return keyIdentifier; } /** * Sets the value of the keyIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setKeyIdentifier(String value) { this.keyIdentifier = value; } /** * Gets the value of the singleSignatureInfo property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the singleSignatureInfo property. * *

* For example, to add a new item, do as follows: *

     *    getSingleSignatureInfo().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CreatePDFSignatureRequestType.SingleSignatureInfo } * * */ public List getSingleSignatureInfo() { if (singleSignatureInfo == null) { singleSignatureInfo = new ArrayList(); } return this.singleSignatureInfo; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="PDFDocument" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
     *         <element name="SignatureProfile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="SignaturePosition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="SignatureID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "pdfDocument", "signatureProfile", "signaturePosition", "signatureID" }) public static class SingleSignatureInfo { @XmlElement(name = "PDFDocument", required = true) protected byte[] pdfDocument; @XmlElement(name = "SignatureProfile") protected String signatureProfile; @XmlElement(name = "SignaturePosition") protected String signaturePosition; @XmlElement(name = "SignatureID") protected String signatureID; /** * Gets the value of the pdfDocument property. * * @return * possible object is * byte[] */ public byte[] getPDFDocument() { return pdfDocument; } /** * Sets the value of the pdfDocument property. * * @param value * allowed object is * byte[] */ public void setPDFDocument(byte[] value) { this.pdfDocument = value; } /** * Gets the value of the signatureProfile property. * * @return * possible object is * {@link String } * */ public String getSignatureProfile() { return signatureProfile; } /** * Sets the value of the signatureProfile property. * * @param value * allowed object is * {@link String } * */ public void setSignatureProfile(String value) { this.signatureProfile = value; } /** * Gets the value of the signaturePosition property. * * @return * possible object is * {@link String } * */ public String getSignaturePosition() { return signaturePosition; } /** * Sets the value of the signaturePosition property. * * @param value * allowed object is * {@link String } * */ public void setSignaturePosition(String value) { this.signaturePosition = value; } /** * 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; } } }