package at.gv.util.xsd.misstork; 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.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import at.gv.util.xsd.mis.MandateIdentifiers; import at.gv.util.xsd.mis.Target; import at.gv.util.xsd.persondata.CorporateBodyType; /** *

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">
 *       <choice>
 *         <sequence>
 *           <element name="StorkMandateType" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *           <element ref="{http://reference.e-government.gv.at/namespace/misstork/20131126/xsd}MandatorType"/>
 *           <element name="Filters" minOccurs="0">
 *             <complexType>
 *               <complexContent>
 *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                   <sequence>
 *                     <element ref="{http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd}MandateIdentifiers" minOccurs="0"/>
 *                   </sequence>
 *                 </restriction>
 *               </complexContent>
 *             </complexType>
 *           </element>
 *           <element ref="{http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd}Target" minOccurs="0"/>
 *           <element name="OAFriendlyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         </sequence>
 *         <sequence>
 *           <element ref="{http://reference.e-government.gv.at/namespace/misstork/20131126/xsd}ReferenceValue"/>
 *           <element name="Mandator">
 *             <complexType>
 *               <complexContent>
 *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                   <choice>
 *                     <sequence>
 *                       <element name="IdentityLink" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *                     </sequence>
 *                     <sequence>
 *                       <element ref="{http://reference.e-government.gv.at/namespace/persondata/20020228#}CorporateBody"/>
 *                     </sequence>
 *                   </choice>
 *                 </restriction>
 *               </complexContent>
 *             </complexType>
 *           </element>
 *           <element name="Representative">
 *             <complexType>
 *               <complexContent>
 *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                   <sequence>
 *                     <element name="IdentityLink" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *                   </sequence>
 *                 </restriction>
 *               </complexContent>
 *             </complexType>
 *           </element>
 *         </sequence>
 *       </choice>
 *       <attribute name="reqID" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "storkMandateType", "mandatorType", "filters", "target", "oaFriendlyName", "referenceValue", "mandator", "representative" }) @XmlRootElement(name = "MisStorkRequest") public class MisStorkRequest { @XmlElement(name = "StorkMandateType") protected BigInteger storkMandateType; @XmlElement(name = "MandatorType") protected String mandatorType; @XmlElement(name = "Filters") protected MisStorkRequest.Filters filters; @XmlElement(name = "Target", namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd") protected Target target; @XmlElement(name = "OAFriendlyName") protected String oaFriendlyName; @XmlElement(name = "ReferenceValue") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String referenceValue; @XmlElement(name = "Mandator") protected MisStorkRequest.Mandator mandator; @XmlElement(name = "Representative") protected MisStorkRequest.Representative representative; @XmlAttribute(name = "reqID") protected String reqID; /** * Gets the value of the storkMandateType property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getStorkMandateType() { return storkMandateType; } /** * Sets the value of the storkMandateType property. * * @param value * allowed object is * {@link BigInteger } * */ public void setStorkMandateType(BigInteger value) { this.storkMandateType = value; } /** * Gets the value of the mandatorType property. * * @return * possible object is * {@link String } * */ public String getMandatorType() { return mandatorType; } /** * Sets the value of the mandatorType property. * * @param value * allowed object is * {@link String } * */ public void setMandatorType(String value) { this.mandatorType = value; } /** * Gets the value of the filters property. * * @return * possible object is * {@link MisStorkRequest.Filters } * */ public MisStorkRequest.Filters getFilters() { return filters; } /** * Sets the value of the filters property. * * @param value * allowed object is * {@link MisStorkRequest.Filters } * */ public void setFilters(MisStorkRequest.Filters value) { this.filters = value; } /** * Gets the value of the target property. * * @return * possible object is * {@link Target } * */ public Target getTarget() { return target; } /** * Sets the value of the target property. * * @param value * allowed object is * {@link Target } * */ public void setTarget(Target value) { this.target = value; } /** * Gets the value of the oaFriendlyName property. * * @return * possible object is * {@link String } * */ public String getOAFriendlyName() { return oaFriendlyName; } /** * Sets the value of the oaFriendlyName property. * * @param value * allowed object is * {@link String } * */ public void setOAFriendlyName(String value) { this.oaFriendlyName = value; } /** * Gets the value of the referenceValue property. * * @return * possible object is * {@link String } * */ public String getReferenceValue() { return referenceValue; } /** * Sets the value of the referenceValue property. * * @param value * allowed object is * {@link String } * */ public void setReferenceValue(String value) { this.referenceValue = value; } /** * Gets the value of the mandator property. * * @return * possible object is * {@link MisStorkRequest.Mandator } * */ public MisStorkRequest.Mandator getMandator() { return mandator; } /** * Sets the value of the mandator property. * * @param value * allowed object is * {@link MisStorkRequest.Mandator } * */ public void setMandator(MisStorkRequest.Mandator value) { this.mandator = value; } /** * Gets the value of the representative property. * * @return * possible object is * {@link MisStorkRequest.Representative } * */ public MisStorkRequest.Representative getRepresentative() { return representative; } /** * Sets the value of the representative property. * * @param value * allowed object is * {@link MisStorkRequest.Representative } * */ public void setRepresentative(MisStorkRequest.Representative value) { this.representative = value; } /** * Gets the value of the reqID property. * * @return * possible object is * {@link String } * */ public String getReqID() { return reqID; } /** * Sets the value of the reqID property. * * @param value * allowed object is * {@link String } * */ public void setReqID(String value) { this.reqID = 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 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 = { "mandateIdentifiers" }) public static class Filters { @XmlElement(name = "MandateIdentifiers", namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd") protected MandateIdentifiers mandateIdentifiers; /** * 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">
     *       <choice>
     *         <sequence>
     *           <element name="IdentityLink" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
     *         </sequence>
     *         <sequence>
     *           <element ref="{http://reference.e-government.gv.at/namespace/persondata/20020228#}CorporateBody"/>
     *         </sequence>
     *       </choice>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "identityLink", "corporateBody" }) public static class Mandator { @XmlElement(name = "IdentityLink") protected byte[] identityLink; @XmlElement(name = "CorporateBody", namespace = "http://reference.e-government.gv.at/namespace/persondata/20020228#") protected CorporateBodyType corporateBody; /** * Gets the value of the identityLink property. * * @return * possible object is * byte[] */ public byte[] getIdentityLink() { return identityLink; } /** * Sets the value of the identityLink property. * * @param value * allowed object is * byte[] */ public void setIdentityLink(byte[] value) { this.identityLink = value; } /** * Gets the value of the corporateBody property. * * @return * possible object is * {@link CorporateBodyType } * */ public CorporateBodyType getCorporateBody() { return corporateBody; } /** * Sets the value of the corporateBody property. * * @param value * allowed object is * {@link CorporateBodyType } * */ public void setCorporateBody(CorporateBodyType value) { this.corporateBody = 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="IdentityLink" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "identityLink" }) public static class Representative { @XmlElement(name = "IdentityLink", required = true) protected byte[] identityLink; /** * Gets the value of the identityLink property. * * @return * possible object is * byte[] */ public byte[] getIdentityLink() { return identityLink; } /** * Sets the value of the identityLink property. * * @param value * allowed object is * byte[] */ public void setIdentityLink(byte[] value) { this.identityLink = value; } } }