From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../at/gv/util/xsd/misstork/MisStorkRequest.java | 410 +++++++++++++++++++++ 1 file changed, 410 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java (limited to 'src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java') diff --git a/src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java b/src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java new file mode 100644 index 0000000..0c5675b --- /dev/null +++ b/src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java @@ -0,0 +1,410 @@ + +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.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.persondata.CorporateBodyType; +import at.gv.util.xsd.persondata.PhysicalPersonType; + + +/** + *

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 ref="{http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd}MandateIdentifiers" minOccurs="0"/>
+ *         </sequence>
+ *         <sequence>
+ *           <element ref="{http://reference.e-government.gv.at/namespace/misstork/20131126/xsd}ReferenceValue"/>
+ *           <element name="MISMandateType" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *           <element name="Mandator">
+ *             <complexType>
+ *               <complexContent>
+ *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                   <choice>
+ *                     <sequence>
+ *                       <element ref="{http://reference.e-government.gv.at/namespace/persondata/20020228#}PhysicalPerson"/>
+ *                     </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 ref="{http://reference.e-government.gv.at/namespace/persondata/20020228#}PhysicalPerson"/>
+ *                   </sequence>
+ *                 </restriction>
+ *               </complexContent>
+ *             </complexType>
+ *           </element>
+ *         </sequence>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "storkMandateType", + "mandatorType", + "mandateIdentifiers", + "referenceValue", + "misMandateType", + "mandator", + "representative" +}) +@XmlRootElement(name = "MisStorkRequest") +public class MisStorkRequest { + + @XmlElement(name = "StorkMandateType") + protected BigInteger storkMandateType; + @XmlElement(name = "MandatorType") + protected String mandatorType; + @XmlElement(name = "MandateIdentifiers", namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd") + protected MandateIdentifiers mandateIdentifiers; + @XmlElement(name = "ReferenceValue") + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + protected String referenceValue; + @XmlElement(name = "MISMandateType") + protected String misMandateType; + @XmlElement(name = "Mandator") + protected MisStorkRequest.Mandator mandator; + @XmlElement(name = "Representative") + protected MisStorkRequest.Representative representative; + + /** + * 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 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; + } + + /** + * 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 misMandateType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMISMandateType() { + return misMandateType; + } + + /** + * Sets the value of the misMandateType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMISMandateType(String value) { + this.misMandateType = 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; + } + + + /** + *

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 ref="{http://reference.e-government.gv.at/namespace/persondata/20020228#}PhysicalPerson"/>
+     *         </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 = { + "physicalPerson", + "corporateBody" + }) + public static class Mandator { + + @XmlElement(name = "PhysicalPerson", namespace = "http://reference.e-government.gv.at/namespace/persondata/20020228#") + protected PhysicalPersonType physicalPerson; + @XmlElement(name = "CorporateBody", namespace = "http://reference.e-government.gv.at/namespace/persondata/20020228#") + protected CorporateBodyType corporateBody; + + /** + * Gets the value of the physicalPerson property. + * + * @return + * possible object is + * {@link PhysicalPersonType } + * + */ + public PhysicalPersonType getPhysicalPerson() { + return physicalPerson; + } + + /** + * Sets the value of the physicalPerson property. + * + * @param value + * allowed object is + * {@link PhysicalPersonType } + * + */ + public void setPhysicalPerson(PhysicalPersonType value) { + this.physicalPerson = 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 ref="{http://reference.e-government.gv.at/namespace/persondata/20020228#}PhysicalPerson"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "physicalPerson" + }) + public static class Representative { + + @XmlElement(name = "PhysicalPerson", namespace = "http://reference.e-government.gv.at/namespace/persondata/20020228#", required = true) + protected PhysicalPersonType physicalPerson; + + /** + * Gets the value of the physicalPerson property. + * + * @return + * possible object is + * {@link PhysicalPersonType } + * + */ + public PhysicalPersonType getPhysicalPerson() { + return physicalPerson; + } + + /** + * Sets the value of the physicalPerson property. + * + * @param value + * allowed object is + * {@link PhysicalPersonType } + * + */ + public void setPhysicalPerson(PhysicalPersonType value) { + this.physicalPerson = value; + } + + } + +} -- cgit v1.2.3