Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import javax.xml.bind.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlType;
7
8
 
9
 
10
 * <p>Java class for QueryRange complex type.
11
 *
12
 * <p>The following schema fragment specifies the expected content contained within this class.
13
 *
14
 * <pre>
15
 * &lt;complexType name="QueryRange">
16
 *   &lt;complexContent>
17
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18
 *       &lt;sequence>
19
 *         &lt;element name="startIndex" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
20
 *         &lt;element name="fetchSize" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
21
 *         &lt;element name="totalCount" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
22
 *       &lt;/sequence>
23
 *     &lt;/restriction>
24
 *   &lt;/complexContent>
25
 * &lt;/complexType>
26
 * </pre>
27
 *
28
 *
29
 */
30
@XmlAccessorType(XmlAccessType.FIELD)
31
@XmlType(name = "QueryRange", propOrder = {
32
    "startIndex",
33
    "fetchSize",
34
    "totalCount"
35
})
36
public class QueryRange {
37
38
 
39
    protected BigInteger fetchSize;
40
    protected BigInteger totalCount;
41
42
 
43
     * Gets the value of the startIndex property.
44
     *
45
     * @return
46
     *     possible object is
47
     *     {@link BigInteger }
48
     *
49
     */
50
    public BigInteger getStartIndex() {
51
        return startIndex;
52
    }
53
54
 
55
     * Sets the value of the startIndex property.
56
     *
57
     * @param value
58
     *     allowed object is
59
     *     {@link BigInteger }
60
     *
61
     */
62
    public void setStartIndex(BigInteger value) {
63
        this.startIndex = value;
64
    }
65
66
 
67
     * Gets the value of the fetchSize property.
68
     *
69
     * @return
70
     *     possible object is
71
     *     {@link BigInteger }
72
     *
73
     */
74
    public BigInteger getFetchSize() {
75
        return fetchSize;
76
    }
77
78
 
79
     * Sets the value of the fetchSize property.
80
     *
81
     * @param value
82
     *     allowed object is
83
     *     {@link BigInteger }
84
     *
85
     */
86
    public void setFetchSize(BigInteger value) {
87
        this.fetchSize = value;
88
    }
89
90
 
91
     * Gets the value of the totalCount property.
92
     *
93
     * @return
94
     *     possible object is
95
     *     {@link BigInteger }
96
     *
97
     */
98
    public BigInteger getTotalCount() {
99
        return totalCount;
100
    }
101
102
 
103
     * Sets the value of the totalCount property.
104
     *
105
     * @param value
106
     *     allowed object is
107
     *     {@link BigInteger }
108
     *
109
     */
110
    public void setTotalCount(BigInteger value) {
111
        this.totalCount = value;
112
    }
113
114
 
115