package at.gv.util.xsd.mis.usp_v2.eai.syncmsgs; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlMixed; import javax.xml.bind.annotation.XmlType; import at.gv.util.xsd.mis.usp_v2.mandates.PropertiesType; import at.gv.util.xsd.mis.usp_v2.persondata.IdentificationType; /** *

Java-Klasse für SearchCriteriaType complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="SearchCriteriaType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence maxOccurs="7">
 *         <choice>
 *           <element name="ActivationRange" type="{http://eai.brz.gv.at/services/vdds/sync-msgs}TimeRangeType"/>
 *           <element name="MandateType" type="{http://reference.e-government.gv.at/namespace/mandates/20040701#}TextualDescriptionType"/>
 *           <element name="MandatorID" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}IdentificationType"/>
 *           <element name="RepresentativeID" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}IdentificationType"/>
 *           <element name="TerminationRange" type="{http://eai.brz.gv.at/services/vdds/sync-msgs}TimeRangeType"/>
 *           <element name="ValidFromTo" type="{http://eai.brz.gv.at/services/vdds/sync-msgs}TimeRangeType"/>
 *           <element ref="{http://reference.e-government.gv.at/namespace/mandates/20040701#}Properties"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchCriteriaTestType", propOrder = { "activationRangeOrMandateTypeOrMandatorID" }) public class SearchCriteriaType { @XmlElementRefs({ @XmlElementRef(name = "ValidFromTo", namespace = "http://eai.brz.gv.at/services/vdds/sync-msgs", type = JAXBElement.class, required = false), @XmlElementRef(name = "MandatorID", namespace = "http://eai.brz.gv.at/services/vdds/sync-msgs", type = JAXBElement.class, required = false), @XmlElementRef(name = "ActivationRange", namespace = "http://eai.brz.gv.at/services/vdds/sync-msgs", type = JAXBElement.class, required = false), @XmlElementRef(name = "RepresentativeID", namespace = "http://eai.brz.gv.at/services/vdds/sync-msgs", type = JAXBElement.class, required = false), @XmlElementRef(name = "TerminationRange", namespace = "http://eai.brz.gv.at/services/vdds/sync-msgs", type = JAXBElement.class, required = false), @XmlElementRef(name = "MandateType", namespace = "http://eai.brz.gv.at/services/vdds/sync-msgs", type = JAXBElement.class, required = false), @XmlElementRef(name = "Properties", namespace = "http://reference.e-government.gv.at/namespace/mandates/20040701#", type = JAXBElement.class, required = false) }) protected List> activationRangeOrMandateTypeOrMandatorID; /** * Gets the value of the activationRangeOrMandateTypeOrMandatorID 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 activationRangeOrMandateTypeOrMandatorID property. * *

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

     *    getActivationRangeOrMandateTypeOrMandatorID().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link TimeRangeType }{@code >} * {@link JAXBElement }{@code <}{@link IdentificationType }{@code >} * {@link JAXBElement }{@code <}{@link TimeRangeType }{@code >} * {@link JAXBElement }{@code <}{@link IdentificationType }{@code >} * {@link JAXBElement }{@code <}{@link TimeRangeType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link PropertiesType }{@code >} * * */ public List> getActivationRangeOrMandateTypeOrMandatorID() { if (activationRangeOrMandateTypeOrMandatorID == null) { activationRangeOrMandateTypeOrMandatorID = new ArrayList>(); } return this.activationRangeOrMandateTypeOrMandatorID; } }