package at.gv.util.xsd.mis.usp_v2.eai.syncmsgs; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *
Java-Klasse für MandateIDSearchFilterType complex type. * *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *
* <complexType name="MandateIDSearchFilterType">
* <complexContent>
* <restriction base="{http://eai.brz.gv.at/services/vdds/sync-msgs}FilterType">
* <sequence>
* <element name="Filter">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SearchCriteria">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MandateID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MandateIDSearchFilterType", propOrder = {
"filter"
})
public class MandateIDSearchFilterType
extends FilterType
{
@XmlElement(name = "Filter", required = true)
protected SearchCriteriaTestType filter;
/**
* Ruft den Wert der filter-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public SearchCriteriaTestType getFilter() {
return (SearchCriteriaTestType) filter;
}
/**
* Legt den Wert der filter-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setFilter(SearchCriteriaTestType value) {
this.filter = value;
}
}