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/zkopf/MessagingaddressType.java | 92 ++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/zkopf/MessagingaddressType.java (limited to 'src/main/java/at/gv/util/xsd/zkopf/MessagingaddressType.java') diff --git a/src/main/java/at/gv/util/xsd/zkopf/MessagingaddressType.java b/src/main/java/at/gv/util/xsd/zkopf/MessagingaddressType.java new file mode 100644 index 0000000..8bcb5ce --- /dev/null +++ b/src/main/java/at/gv/util/xsd/zkopf/MessagingaddressType.java @@ -0,0 +1,92 @@ + +package at.gv.util.xsd.zkopf; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; +import at.gv.util.xsd.zkopf.persondata.InternetAddressType; +import at.gv.util.xsd.zkopf.persondata.TelephoneAddressType; + + +/** + *

Java class for messagingaddressType complex type. + * + *

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

+ * <complexType name="messagingaddressType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}TelephoneAddress" minOccurs="0"/>
+ *         <element ref="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}InternetAddress" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "messagingaddressType", propOrder = { + "telephoneAddress", + "internetAddress" +}) +public class MessagingaddressType { + + @XmlElement(name = "TelephoneAddress", namespace = "http://reference.e-government.gv.at/namespace/persondata/en/20040201#") + protected TelephoneAddressType telephoneAddress; + @XmlElement(name = "InternetAddress", namespace = "http://reference.e-government.gv.at/namespace/persondata/en/20040201#") + protected InternetAddressType internetAddress; + + /** + * Gets the value of the telephoneAddress property. + * + * @return + * possible object is + * {@link TelephoneAddressType } + * + */ + public TelephoneAddressType getTelephoneAddress() { + return telephoneAddress; + } + + /** + * Sets the value of the telephoneAddress property. + * + * @param value + * allowed object is + * {@link TelephoneAddressType } + * + */ + public void setTelephoneAddress(TelephoneAddressType value) { + this.telephoneAddress = value; + } + + /** + * Gets the value of the internetAddress property. + * + * @return + * possible object is + * {@link InternetAddressType } + * + */ + public InternetAddressType getInternetAddress() { + return internetAddress; + } + + /** + * Sets the value of the internetAddress property. + * + * @param value + * allowed object is + * {@link InternetAddressType } + * + */ + public void setInternetAddress(InternetAddressType value) { + this.internetAddress = value; + } + +} -- cgit v1.2.3