package at.gv.util.xsd.ur_V2.pd; 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.XmlID; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import at.gv.util.xsd.ur_V2.search.QuellenType; /** * Container für beliebige Identifikationsmerkmale, * besteht aus Type und Value Unterelementen, aus technischen Gründen * nur auf Englisch verfügbar * *

Java class for IdentificationType complex type. * *

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

 * <complexType name="IdentificationType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Value">
 *           <complexType>
 *             <simpleContent>
 *               <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *                 <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *               </extension>
 *             </simpleContent>
 *           </complexType>
 *         </element>
 *         <element name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
 *         <element ref="{http://statistik.at/namespace/ur/stammdaten/2#}TypeText" minOccurs="0"/>
 *         <element ref="{http://statistik.at/namespace/ur/stammdaten/2#}Beginn" minOccurs="0"/>
 *         <element ref="{http://statistik.at/namespace/ur/stammdaten/2#}Ende" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IdentificationType", propOrder = { "value", "type", "typeText", "beginn", "ende" }) public class IdentificationType { @XmlElement(name = "Value", required = true) protected IdentificationType.Value value; @XmlElement(name = "Type", required = true) @XmlSchemaType(name = "anyURI") protected String type; @XmlElement(name = "TypeText", namespace = "http://statistik.at/namespace/ur/stammdaten/2#") protected String typeText; @XmlElement(name = "Beginn", namespace = "http://statistik.at/namespace/ur/stammdaten/2#") protected QuellenType beginn; @XmlElement(name = "Ende", namespace = "http://statistik.at/namespace/ur/stammdaten/2#") protected QuellenType ende; @XmlAttribute(name = "Id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; /** * Gets the value of the value property. * * @return * possible object is * {@link IdentificationType.Value } * */ public IdentificationType.Value getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link IdentificationType.Value } * */ public void setValue(IdentificationType.Value value) { this.value = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the typeText property. * * @return * possible object is * {@link String } * */ public String getTypeText() { return typeText; } /** * Sets the value of the typeText property. * * @param value * allowed object is * {@link String } * */ public void setTypeText(String value) { this.typeText = value; } /** * Gets the value of the beginn property. * * @return * possible object is * {@link QuellenType } * */ public QuellenType getBeginn() { return beginn; } /** * Sets the value of the beginn property. * * @param value * allowed object is * {@link QuellenType } * */ public void setBeginn(QuellenType value) { this.beginn = value; } /** * Gets the value of the ende property. * * @return * possible object is * {@link QuellenType } * */ public QuellenType getEnde() { return ende; } /** * Sets the value of the ende property. * * @param value * allowed object is * {@link QuellenType } * */ public void setEnde(QuellenType value) { this.ende = 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; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <simpleContent>
     *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
     *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
     *     </extension>
     *   </simpleContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class Value { @XmlValue protected String value; @XmlAttribute(name = "Id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = 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; } } }