package at.gv.util.xsd.ur_V2.xmlsw; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

Java class for ResultCriteriaType complex type. * *

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

 * <complexType name="ResultCriteriaType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}MaxRecords" minOccurs="0"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}StartRecord" minOccurs="0"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SortKeys" minOccurs="0"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}TimeOut" minOccurs="0"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}RecordFieldList" minOccurs="0"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ExtraResultCriteria" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResultCriteriaType", propOrder = { "maxRecords", "startRecord", "sortKeys", "timeOut", "recordFieldList", "extraResultCriteria" }) public class ResultCriteriaType { @XmlElement(name = "MaxRecords") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger maxRecords; @XmlElement(name = "StartRecord") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger startRecord; @XmlElement(name = "SortKeys") protected SortKeysType sortKeys; @XmlElement(name = "TimeOut") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger timeOut; @XmlElement(name = "RecordFieldList") protected RecordFieldList recordFieldList; @XmlElement(name = "ExtraResultCriteria") protected ExtraResultCriteria extraResultCriteria; /** * Gets the value of the maxRecords property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMaxRecords() { return maxRecords; } /** * Sets the value of the maxRecords property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMaxRecords(BigInteger value) { this.maxRecords = value; } /** * Gets the value of the startRecord property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getStartRecord() { return startRecord; } /** * Sets the value of the startRecord property. * * @param value * allowed object is * {@link BigInteger } * */ public void setStartRecord(BigInteger value) { this.startRecord = value; } /** * Gets the value of the sortKeys property. * * @return * possible object is * {@link SortKeysType } * */ public SortKeysType getSortKeys() { return sortKeys; } /** * Sets the value of the sortKeys property. * * @param value * allowed object is * {@link SortKeysType } * */ public void setSortKeys(SortKeysType value) { this.sortKeys = value; } /** * Gets the value of the timeOut property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTimeOut() { return timeOut; } /** * Sets the value of the timeOut property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTimeOut(BigInteger value) { this.timeOut = value; } /** * Gets the value of the recordFieldList property. * * @return * possible object is * {@link RecordFieldList } * */ public RecordFieldList getRecordFieldList() { return recordFieldList; } /** * Sets the value of the recordFieldList property. * * @param value * allowed object is * {@link RecordFieldList } * */ public void setRecordFieldList(RecordFieldList value) { this.recordFieldList = value; } /** * Gets the value of the extraResultCriteria property. * * @return * possible object is * {@link ExtraResultCriteria } * */ public ExtraResultCriteria getExtraResultCriteria() { return extraResultCriteria; } /** * Sets the value of the extraResultCriteria property. * * @param value * allowed object is * {@link ExtraResultCriteria } * */ public void setExtraResultCriteria(ExtraResultCriteria value) { this.extraResultCriteria = value; } }