package at.gv.util.xsd.ur_V5.search; import java.util.ArrayList; import java.util.List; 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.ur_V5.simpletypes.ErgebnisVollzugStatusTyp; /** *

Java class for SucheUnternehmenNachIdsRequest complex type. * *

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

 * <complexType name="SucheUnternehmenNachIdsRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="version" type="{http://statistik.at/namespace/ur/simpleTypes/2#}VersionTyp" minOccurs="0"/>
 *         <element name="kur" type="{http://statistik.at/namespace/ur/simpleTypes/2#}KurTyp" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="fbn" type="{http://statistik.at/namespace/ur/simpleTypes/2#}FbnTyp" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="zvr" type="{http://statistik.at/namespace/ur/simpleTypes/2#}ZvrTyp" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="erj" type="{http://statistik.at/namespace/ur/simpleTypes/2#}ErjTyp" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="sek" type="{http://statistik.at/namespace/ur/simpleTypes/2#}SekTyp" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="mitHistorie" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="vollzugStatus" type="{http://statistik.at/namespace/ur/simpleTypes/2#}ErgebnisVollzugStatusTyp" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SucheUnternehmenNachIdsRequest", propOrder = { "version", "kur", "fbn", "zvr", "erj", "sek", "mitHistorie", "vollzugStatus" }) public class SucheUnternehmenNachIdsRequest { protected String version; protected List kur; protected List fbn; protected List zvr; protected List erj; protected List sek; @XmlElement(defaultValue = "false") protected Boolean mitHistorie; protected ErgebnisVollzugStatusTyp vollzugStatus; /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the kur property. * *

* 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 set method for the kur property. * *

* For example, to add a new item, do as follows: *

     *    getKur().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getKur() { if (kur == null) { kur = new ArrayList(); } return this.kur; } /** * Gets the value of the fbn property. * *

* 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 set method for the fbn property. * *

* For example, to add a new item, do as follows: *

     *    getFbn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getFbn() { if (fbn == null) { fbn = new ArrayList(); } return this.fbn; } /** * Gets the value of the zvr property. * *

* 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 set method for the zvr property. * *

* For example, to add a new item, do as follows: *

     *    getZvr().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getZvr() { if (zvr == null) { zvr = new ArrayList(); } return this.zvr; } /** * Gets the value of the erj property. * *

* 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 set method for the erj property. * *

* For example, to add a new item, do as follows: *

     *    getErj().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getErj() { if (erj == null) { erj = new ArrayList(); } return this.erj; } /** * Gets the value of the sek property. * *

* 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 set method for the sek property. * *

* For example, to add a new item, do as follows: *

     *    getSek().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getSek() { if (sek == null) { sek = new ArrayList(); } return this.sek; } /** * Gets the value of the mitHistorie property. * * @return * possible object is * {@link Boolean } * */ public Boolean isMitHistorie() { return mitHistorie; } /** * Sets the value of the mitHistorie property. * * @param value * allowed object is * {@link Boolean } * */ public void setMitHistorie(Boolean value) { this.mitHistorie = value; } /** * Gets the value of the vollzugStatus property. * * @return * possible object is * {@link ErgebnisVollzugStatusTyp } * */ public ErgebnisVollzugStatusTyp getVollzugStatus() { return vollzugStatus; } /** * Sets the value of the vollzugStatus property. * * @param value * allowed object is * {@link ErgebnisVollzugStatusTyp } * */ public void setVollzugStatus(ErgebnisVollzugStatusTyp value) { this.vollzugStatus = value; } }