//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert
// Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2016.08.10 um 09:13:50 PM CEST
//
package oasis.names.tc.ciq.xsdschema.xal._2;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.namespace.QName;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}AddressLine" maxOccurs="unbounded" minOccurs="0"/>
* <element name="PostBoxNumber">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/>
* <anyAttribute namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="PostBoxNumberPrefix" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/>
* <attribute name="NumberPrefixSeparator" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <anyAttribute namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="PostBoxNumberSuffix" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/>
* <attribute name="NumberSuffixSeparator" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <anyAttribute namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="PostBoxNumberExtension" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="NumberExtensionSeparator" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <anyAttribute namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="Firm" type="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}FirmType" minOccurs="0"/>
* <element ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}PostalCode" minOccurs="0"/>
* <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="Indicator" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <anyAttribute namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"addressLine",
"postBoxNumber",
"postBoxNumberPrefix",
"postBoxNumberSuffix",
"postBoxNumberExtension",
"firm",
"postalCode",
"any"
})
@XmlRootElement(name = "PostBox")
public class PostBoxElement {
@XmlElement(name = "AddressLine")
protected List<AddressLineElement> addressLine;
@XmlElement(name = "PostBoxNumber", required = true)
protected PostBoxElement.PostBoxNumber postBoxNumber;
@XmlElement(name = "PostBoxNumberPrefix")
protected PostBoxElement.PostBoxNumberPrefix postBoxNumberPrefix;
@XmlElement(name = "PostBoxNumberSuffix")
protected PostBoxElement.PostBoxNumberSuffix postBoxNumberSuffix;
@XmlElement(name = "PostBoxNumberExtension")
protected PostBoxElement.PostBoxNumberExtension postBoxNumberExtension;
@XmlElement(name = "Firm")
protected FirmType firm;
@XmlElement(name = "PostalCode")
protected PostalCodeElement postalCode;
@XmlAnyElement(lax = true)
protected List<Object> any;
@XmlAttribute(name = "Type")
@XmlSchemaType(name = "anySimpleType")
protected String type;
@XmlAttribute(name = "Indicator")
@XmlSchemaType(name = "anySimpleType")
protected String indicator;
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<QName, String>();
/**
* Gets the value of the addressLine property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the addressLine property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAddressLine().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link AddressLineElement }
*
*
*/
public List<AddressLineElement> getAddressLine() {
if (addressLine == null) {
addressLine = new ArrayList<AddressLineElement>();
}
return this.addressLine;
}
public boolean isSetAddressLine() {
return ((this.addressLine!= null)&&(!this.addressLine.isEmpty()));
}
public void unsetAddressLine() {
this.addressLine = null;
}
/**
* Ruft den Wert der postBoxNumber-Eigenschaft ab.
*
* @return
* possible object is
* {@link PostBoxElement.PostBoxNumber }
*
*/
public PostBoxElement.PostBoxNumber getPostBoxNumber() {
return postBoxNumber;
}
/**
* Legt den Wert der postBoxNumber-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PostBoxElement.PostBoxNumber }
*
*/
public void setPostBoxNumber(PostBoxElement.PostBoxNumber value) {
this.postBoxNumber = value;
}
public boolean isSetPostBoxNumber() {
return (this.postBoxNumber!= null);
}
/**
* Ruft den Wert der postBoxNumberPrefix-Eigenschaft ab.
*
* @return
* possible object is
* {@link PostBoxElement.PostBoxNumberPrefix }
*
*/
public PostBoxElement.PostBoxNumberPrefix getPostBoxNumberPrefix() {
return postBoxNumberPrefix;
}
/**
* Legt den Wert der postBoxNumberPrefix-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PostBoxElement.PostBoxNumberPrefix }
*
*/
public void setPostBoxNumberPrefix(PostBoxElement.PostBoxNumberPrefix value) {
this.postBoxNumberPrefix = value;
}
public boolean isSetPostBoxNumberPrefix() {
return (this.postBoxNumberPrefix!= null);
}
/**
* Ruft den Wert der postBoxNumberSuffix-Eigenschaft ab.
*
* @return
* possible object is
* {@link PostBoxElement.PostBoxNumberSuffix }
*
*/
public PostBoxElement.PostBoxNumberSuffix getPostBoxNumberSuffix() {
return postBoxNumberSuffix;
}
/**
* Legt den Wert der postBoxNumberSuffix-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PostBoxElement.PostBoxNumberSuffix }
*
*/
public void setPostBoxNumberSuffix(PostBoxElement.PostBoxNumberSuffix value) {
this.postBoxNumberSuffix = value;
}
public boolean isSetPostBoxNumberSuffix() {
return (this.postBoxNumberSuffix!= null);
}
/**
* Ruft den Wert der postBoxNumberExtension-Eigenschaft ab.
*
* @return
* possible object is
* {@link PostBoxElement.PostBoxNumberExtension }
*
*/
public PostBoxElement.PostBoxNumberExtension getPostBoxNumberExtension() {
return postBoxNumberExtension;
}
/**
* Legt den Wert der postBoxNumberExtension-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PostBoxElement.PostBoxNumberExtension }
*
*/
public void setPostBoxNumberExtension(PostBoxElement.PostBoxNumberExtension value) {
this.postBoxNumberExtension = value;
}
public boolean isSetPostBoxNumberExtension() {
return (this.postBoxNumberExtension!= null);
}
/**
* Ruft den Wert der firm-Eigenschaft ab.
*
* @return
* possible object is
* {@link FirmType }
*
*/
public FirmType getFirm() {
return firm;
}
/**
* Legt den Wert der firm-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link FirmType }
*
*/
public void setFirm(FirmType value) {
this.firm = value;
}
public boolean isSetFirm() {
return (this.firm!= null);
}
/**
* Ruft den Wert der postalCode-Eigenschaft ab.
*
* @return
* possible object is
* {@link PostalCodeElement }
*
*/
public PostalCodeElement getPostalCode() {
return postalCode;
}
/**
* Legt den Wert der postalCode-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PostalCodeElement }
*
*/
public void setPostalCode(PostalCodeElement value) {
this.postalCode = value;
}
public boolean isSetPostalCode() {
return (this.postalCode!= null);
}
/**
* Gets the value of the any property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the any property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAny().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Object }
*
*
*/
public List<Object> getAny() {
if (any == null) {
any = new ArrayList<Object>();
}
return this.any;
}
public boolean isSetAny() {
return ((this.any!= null)&&(!this.any.isEmpty()));
}
public void unsetAny() {
this.any = null;
}
/**
* Ruft den Wert der type-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Legt den Wert der type-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
public boolean isSetType() {
return (this.type!= null);
}
/**
* Ruft den Wert der indicator-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIndicator() {
return indicator;
}
/**
* Legt den Wert der indicator-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIndicator(String value) {
this.indicator = value;
}
public boolean isSetIndicator() {
return (this.indicator!= null);
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
* <p>
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map<QName, String> getOtherAttributes() {
return otherAttributes;
}
public void setAddressLine(List<AddressLineElement> value) {
this.addressLine = value;
}
public void setAny(List<Object> value) {
this.any = value;
}
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/>
* <anyAttribute namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"content"
})
public static class PostBoxNumber {
@XmlValue
protected String content;
@XmlAttribute(name = "Code")
@XmlSchemaType(name = "anySimpleType")
protected String code;
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<QName, String>();
/**
* Ruft den Wert der content-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Legt den Wert der content-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
public boolean isSetContent() {
return (this.content!= null);
}
/**
* Ruft den Wert der code-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Legt den Wert der code-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
public boolean isSetCode() {
return (this.code!= null);
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
* <p>
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map<QName, String> getOtherAttributes() {
return otherAttributes;
}
}
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="NumberExtensionSeparator" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <anyAttribute namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"content"
})
public static class PostBoxNumberExtension {
@XmlValue
protected String content;
@XmlAttribute(name = "NumberExtensionSeparator")
@XmlSchemaType(name = "anySimpleType")
protected String numberExtensionSeparator;
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<QName, String>();
/**
* Ruft den Wert der content-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Legt den Wert der content-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
public boolean isSetContent() {
return (this.content!= null);
}
/**
* Ruft den Wert der numberExtensionSeparator-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNumberExtensionSeparator() {
return numberExtensionSeparator;
}
/**
* Legt den Wert der numberExtensionSeparator-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNumberExtensionSeparator(String value) {
this.numberExtensionSeparator = value;
}
public boolean isSetNumberExtensionSeparator() {
return (this.numberExtensionSeparator!= null);
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
* <p>
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map<QName, String> getOtherAttributes() {
return otherAttributes;
}
}
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/>
* <attribute name="NumberPrefixSeparator" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <anyAttribute namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"content"
})
public static class PostBoxNumberPrefix {
@XmlValue
protected String content;
@XmlAttribute(name = "NumberPrefixSeparator")
@XmlSchemaType(name = "anySimpleType")
protected String numberPrefixSeparator;
@XmlAttribute(name = "Code")
@XmlSchemaType(name = "anySimpleType")
protected String code;
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<QName, String>();
/**
* Ruft den Wert der content-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Legt den Wert der content-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
public boolean isSetContent() {
return (this.content!= null);
}
/**
* Ruft den Wert der numberPrefixSeparator-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNumberPrefixSeparator() {
return numberPrefixSeparator;
}
/**
* Legt den Wert der numberPrefixSeparator-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNumberPrefixSeparator(String value) {
this.numberPrefixSeparator = value;
}
public boolean isSetNumberPrefixSeparator() {
return (this.numberPrefixSeparator!= null);
}
/**
* Ruft den Wert der code-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Legt den Wert der code-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
public boolean isSetCode() {
return (this.code!= null);
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
* <p>
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map<QName, String> getOtherAttributes() {
return otherAttributes;
}
}
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/>
* <attribute name="NumberSuffixSeparator" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <anyAttribute namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"content"
})
public static class PostBoxNumberSuffix {
@XmlValue
protected String content;
@XmlAttribute(name = "NumberSuffixSeparator")
@XmlSchemaType(name = "anySimpleType")
protected String numberSuffixSeparator;
@XmlAttribute(name = "Code")
@XmlSchemaType(name = "anySimpleType")
protected String code;
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<QName, String>();
/**
* Ruft den Wert der content-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Legt den Wert der content-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
public boolean isSetContent() {
return (this.content!= null);
}
/**
* Ruft den Wert der numberSuffixSeparator-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNumberSuffixSeparator() {
return numberSuffixSeparator;
}
/**
* Legt den Wert der numberSuffixSeparator-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNumberSuffixSeparator(String value) {
this.numberSuffixSeparator = value;
}
public boolean isSetNumberSuffixSeparator() {
return (this.numberSuffixSeparator!= null);
}
/**
* Ruft den Wert der code-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Legt den Wert der code-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
public boolean isSetCode() {
return (this.code!= null);
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
* <p>
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map<QName, String> getOtherAttributes() {
return otherAttributes;
}
}
}