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

Java class for QueryType complex type. + * + *

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

+ * <complexType name="QueryType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <choice minOccurs="0">
+ *           <element name="gvZbPK" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ *           <element name="Identification" type="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}IdentificationType"/>
+ *         </choice>
+ *         <sequence>
+ *           <choice>
+ *             <element ref="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}CorporateBody"/>
+ *             <element ref="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}PhysicalPerson"/>
+ *           </choice>
+ *           <choice minOccurs="0">
+ *             <element ref="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}PostalAddress"/>
+ *             <element name="VerAddress" type="{http://reference.e-government.gv.at/namespaces/zustellung/kopf}messagingaddressType"/>
+ *           </choice>
+ *         </sequence>
+ *       </choice>
+ *       <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}token" />
+ *       <attribute name="ProfileID" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "QueryType", propOrder = { + "gvZbPK", + "identification", + "corporateBody", + "physicalPerson", + "postalAddress", + "verAddress" +}) +public class QueryType { + + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "token") + protected String gvZbPK; + @XmlElement(name = "Identification") + protected IdentificationType identification; + @XmlElement(name = "CorporateBody", namespace = "http://reference.e-government.gv.at/namespace/persondata/en/20040201#") + protected CorporateBodyType corporateBody; + @XmlElement(name = "PhysicalPerson", namespace = "http://reference.e-government.gv.at/namespace/persondata/en/20040201#") + protected PhysicalPersonType physicalPerson; + @XmlElement(name = "PostalAddress", namespace = "http://reference.e-government.gv.at/namespace/persondata/en/20040201#") + protected PostalAddressType postalAddress; + @XmlElement(name = "VerAddress") + protected MessagingaddressType verAddress; + @XmlAttribute(name = "ID") + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "token") + protected String id; + @XmlAttribute(name = "ProfileID") + @XmlSchemaType(name = "anySimpleType") + protected String profileID; + + /** + * Gets the value of the gvZbPK property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGvZbPK() { + return gvZbPK; + } + + /** + * Sets the value of the gvZbPK property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGvZbPK(String value) { + this.gvZbPK = value; + } + + /** + * Gets the value of the identification property. + * + * @return + * possible object is + * {@link IdentificationType } + * + */ + public IdentificationType getIdentification() { + return identification; + } + + /** + * Sets the value of the identification property. + * + * @param value + * allowed object is + * {@link IdentificationType } + * + */ + public void setIdentification(IdentificationType value) { + this.identification = 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; + } + + /** + * 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 postalAddress property. + * + * @return + * possible object is + * {@link PostalAddressType } + * + */ + public PostalAddressType getPostalAddress() { + return postalAddress; + } + + /** + * Sets the value of the postalAddress property. + * + * @param value + * allowed object is + * {@link PostalAddressType } + * + */ + public void setPostalAddress(PostalAddressType value) { + this.postalAddress = value; + } + + /** + * Gets the value of the verAddress property. + * + * @return + * possible object is + * {@link MessagingaddressType } + * + */ + public MessagingaddressType getVerAddress() { + return verAddress; + } + + /** + * Sets the value of the verAddress property. + * + * @param value + * allowed object is + * {@link MessagingaddressType } + * + */ + public void setVerAddress(MessagingaddressType value) { + this.verAddress = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getID() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setID(String value) { + this.id = value; + } + + /** + * Gets the value of the profileID property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProfileID() { + return profileID; + } + + /** + * Sets the value of the profileID property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProfileID(String value) { + this.profileID = value; + } + +} -- cgit v1.2.3