summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2014-03-25 12:11:34 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2014-03-25 12:11:34 +0100
commit107930978eefc7234e99bbccd483f4da3a690c0d (patch)
treefeef5d6db47dada6cb9df3333bebfa8fdb13db29 /src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java
parent655d20aa34b819720b20165dc6aeea032df224cc (diff)
downloadegovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.gz
egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.bz2
egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.zip
add UR Client version 5
remove UR Client version 1 change egovutils version to 1.0.5
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java207
1 files changed, 0 insertions, 207 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java
deleted file mode 100644
index e1f1de7..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java
+++ /dev/null
@@ -1,207 +0,0 @@
-
-package at.gv.util.xsd.ur.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;
-
-
-/**
- * <p>Java class for ResultCriteriaType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="ResultCriteriaType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}MaxRecords" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}StartRecord" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SortKeys" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}TimeOut" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}RecordFieldList" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ExtraResultCriteria" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@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;
- }
-
-}