summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr/AddressCodesType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr/AddressCodesType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr/AddressCodesType.java230
1 files changed, 230 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr/AddressCodesType.java b/src/main/java/at/gv/util/xsd/szr/AddressCodesType.java
new file mode 100644
index 0000000..a748c71
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr/AddressCodesType.java
@@ -0,0 +1,230 @@
+
+package at.gv.util.xsd.szr;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for AddressCodesType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="AddressCodesType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="GKZ" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="OKZ" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="SKZ" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="ADRCD" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="SUBCD" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="OBJNR" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="NTZLNR" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "AddressCodesType", propOrder = {
+ "gkz",
+ "okz",
+ "skz",
+ "adrcd",
+ "subcd",
+ "objnr",
+ "ntzlnr"
+})
+public class AddressCodesType {
+
+ @XmlElement(name = "GKZ")
+ protected String gkz;
+ @XmlElement(name = "OKZ")
+ protected String okz;
+ @XmlElement(name = "SKZ")
+ protected String skz;
+ @XmlElement(name = "ADRCD")
+ protected String adrcd;
+ @XmlElement(name = "SUBCD")
+ protected String subcd;
+ @XmlElement(name = "OBJNR")
+ protected String objnr;
+ @XmlElement(name = "NTZLNR")
+ protected String ntzlnr;
+
+ /**
+ * Gets the value of the gkz property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGKZ() {
+ return gkz;
+ }
+
+ /**
+ * Sets the value of the gkz property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGKZ(String value) {
+ this.gkz = value;
+ }
+
+ /**
+ * Gets the value of the okz property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getOKZ() {
+ return okz;
+ }
+
+ /**
+ * Sets the value of the okz property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setOKZ(String value) {
+ this.okz = value;
+ }
+
+ /**
+ * Gets the value of the skz property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSKZ() {
+ return skz;
+ }
+
+ /**
+ * Sets the value of the skz property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSKZ(String value) {
+ this.skz = value;
+ }
+
+ /**
+ * Gets the value of the adrcd property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getADRCD() {
+ return adrcd;
+ }
+
+ /**
+ * Sets the value of the adrcd property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setADRCD(String value) {
+ this.adrcd = value;
+ }
+
+ /**
+ * Gets the value of the subcd property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSUBCD() {
+ return subcd;
+ }
+
+ /**
+ * Sets the value of the subcd property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSUBCD(String value) {
+ this.subcd = value;
+ }
+
+ /**
+ * Gets the value of the objnr property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getOBJNR() {
+ return objnr;
+ }
+
+ /**
+ * Sets the value of the objnr property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setOBJNR(String value) {
+ this.objnr = value;
+ }
+
+ /**
+ * Gets the value of the ntzlnr property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getNTZLNR() {
+ return ntzlnr;
+ }
+
+ /**
+ * Sets the value of the ntzlnr property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setNTZLNR(String value) {
+ this.ntzlnr = value;
+ }
+
+}