package com.coverity.ws.v9;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for pageSpecDataObj complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="pageSpecDataObj">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="pageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="sortAscending" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="sortField" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="startIndex" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "pageSpecDataObj", propOrder = {
"pageSize",
"sortAscending",
"sortField",
"startIndex"
})
public class PageSpecDataObj {
protected int pageSize;
protected boolean sortAscending;
protected String sortField;
protected int startIndex;
/**
* Gets the value of the pageSize property.
*
*/
public int getPageSize() {
return pageSize;
}
/**
* Sets the value of the pageSize property.
*
*/
public void setPageSize(int value) {
this.pageSize = value;
}
/**
* Gets the value of the sortAscending property.
*
*/
public boolean isSortAscending() {
return sortAscending;
}
/**
* Sets the value of the sortAscending property.
*
*/
public void setSortAscending(boolean value) {
this.sortAscending = value;
}
/**
* Gets the value of the sortField property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSortField() {
return sortField;
}
/**
* Sets the value of the sortField property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSortField(String value) {
this.sortField = value;
}
/**
* Gets the value of the startIndex property.
*
*/
public int getStartIndex() {
return startIndex;
}
/**
* Sets the value of the startIndex property.
*
*/
public void setStartIndex(int value) {
this.startIndex = value;
}
}