package at.gv.util.xsd.srzgw; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import at.gv.util.xsd.mis.MandateIdentifiers; import at.gv.util.xsd.stork.MandateContent; import at.gv.util.xsd.stork.RepresentationPerson; /** *

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="PEPSData" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Identifier" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="Firstname" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="Familyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="DateOfBirth" type="{http://reference.e-government.gv.at/namespace/szrgw/20070807/xsd}DateOfBirthType"/>
 *                   <element name="Representative" type="{urn:eu:stork:names:tc:PEPS:1.0:assertion}representationPerson" minOccurs="0"/>
 *                   <element name="Represented" type="{urn:eu:stork:names:tc:PEPS:1.0:assertion}representationPerson" minOccurs="0"/>
 *                   <element name="MandateContent" type="{urn:eu:stork:names:tc:PEPS:1.0:assertion}mandateContent" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="Signature">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Base64Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element ref="{http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd}MandateIdentifiers" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "pepsData", "signature", "mandateIdentifiers" }) @XmlRootElement(name = "CreateIdentityLinkRequest") public class CreateIdentityLinkRequest { @XmlElement(name = "PEPSData") protected CreateIdentityLinkRequest.PEPSData pepsData; @XmlElement(name = "Signature", required = true) protected CreateIdentityLinkRequest.Signature signature; @XmlElement(name = "MandateIdentifiers", namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd") protected MandateIdentifiers mandateIdentifiers; /** * Gets the value of the pepsData property. * * @return * possible object is * {@link CreateIdentityLinkRequest.PEPSData } * */ public CreateIdentityLinkRequest.PEPSData getPEPSData() { return pepsData; } /** * Sets the value of the pepsData property. * * @param value * allowed object is * {@link CreateIdentityLinkRequest.PEPSData } * */ public void setPEPSData(CreateIdentityLinkRequest.PEPSData value) { this.pepsData = value; } /** * Gets the value of the signature property. * * @return * possible object is * {@link CreateIdentityLinkRequest.Signature } * */ public CreateIdentityLinkRequest.Signature getSignature() { return signature; } /** * Sets the value of the signature property. * * @param value * allowed object is * {@link CreateIdentityLinkRequest.Signature } * */ public void setSignature(CreateIdentityLinkRequest.Signature value) { this.signature = value; } /** * Gets the value of the mandateIdentifiers property. * * @return * possible object is * {@link MandateIdentifiers } * */ public MandateIdentifiers getMandateIdentifiers() { return mandateIdentifiers; } /** * Sets the value of the mandateIdentifiers property. * * @param value * allowed object is * {@link MandateIdentifiers } * */ public void setMandateIdentifiers(MandateIdentifiers value) { this.mandateIdentifiers = value; } /** *

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="Identifier" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="Firstname" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="Familyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="DateOfBirth" type="{http://reference.e-government.gv.at/namespace/szrgw/20070807/xsd}DateOfBirthType"/>
     *         <element name="Representative" type="{urn:eu:stork:names:tc:PEPS:1.0:assertion}representationPerson" minOccurs="0"/>
     *         <element name="Represented" type="{urn:eu:stork:names:tc:PEPS:1.0:assertion}representationPerson" minOccurs="0"/>
     *         <element name="MandateContent" type="{urn:eu:stork:names:tc:PEPS:1.0:assertion}mandateContent" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "identifier", "firstname", "familyname", "dateOfBirth", "representative", "represented", "mandateContent" }) public static class PEPSData { @XmlElement(name = "Identifier", required = true) protected String identifier; @XmlElement(name = "Firstname", required = true) protected String firstname; @XmlElement(name = "Familyname", required = true) protected String familyname; @XmlElement(name = "DateOfBirth", required = true) protected String dateOfBirth; @XmlElement(name = "Representative") protected RepresentationPerson representative; @XmlElement(name = "Represented") protected RepresentationPerson represented; @XmlElement(name = "MandateContent") protected MandateContent mandateContent; /** * Gets the value of the identifier property. * * @return * possible object is * {@link String } * */ public String getIdentifier() { return identifier; } /** * Sets the value of the identifier property. * * @param value * allowed object is * {@link String } * */ public void setIdentifier(String value) { this.identifier = value; } /** * Gets the value of the firstname property. * * @return * possible object is * {@link String } * */ public String getFirstname() { return firstname; } /** * Sets the value of the firstname property. * * @param value * allowed object is * {@link String } * */ public void setFirstname(String value) { this.firstname = value; } /** * Gets the value of the familyname property. * * @return * possible object is * {@link String } * */ public String getFamilyname() { return familyname; } /** * Sets the value of the familyname property. * * @param value * allowed object is * {@link String } * */ public void setFamilyname(String value) { this.familyname = value; } /** * Gets the value of the dateOfBirth property. * * @return * possible object is * {@link String } * */ public String getDateOfBirth() { return dateOfBirth; } /** * Sets the value of the dateOfBirth property. * * @param value * allowed object is * {@link String } * */ public void setDateOfBirth(String value) { this.dateOfBirth = value; } /** * Gets the value of the representative property. * * @return * possible object is * {@link RepresentationPerson } * */ public RepresentationPerson getRepresentative() { return representative; } /** * Sets the value of the representative property. * * @param value * allowed object is * {@link RepresentationPerson } * */ public void setRepresentative(RepresentationPerson value) { this.representative = value; } /** * Gets the value of the represented property. * * @return * possible object is * {@link RepresentationPerson } * */ public RepresentationPerson getRepresented() { return represented; } /** * Sets the value of the represented property. * * @param value * allowed object is * {@link RepresentationPerson } * */ public void setRepresented(RepresentationPerson value) { this.represented = value; } /** * Gets the value of the mandateContent property. * * @return * possible object is * {@link MandateContent } * */ public MandateContent getMandateContent() { return mandateContent; } /** * Sets the value of the mandateContent property. * * @param value * allowed object is * {@link MandateContent } * */ public void setMandateContent(MandateContent value) { this.mandateContent = value; } } /** *

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="Base64Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "base64Content" }) public static class Signature { @XmlElement(name = "Base64Content", required = true) protected byte[] base64Content; /** * Gets the value of the base64Content property. * * @return * possible object is * byte[] */ public byte[] getBase64Content() { return base64Content; } /** * Sets the value of the base64Content property. * * @param value * allowed object is * byte[] */ public void setBase64Content(byte[] value) { this.base64Content = value; } } }