package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSGetItemsSort complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSGetItemsSort"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="conceptName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="dir" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="maxItems" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="skip" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="sort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="spellTreshold" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="totalCountOnFirstResult" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="whereItem" type="{http://www.talend.com/mdm}WSWhereItem" minOccurs="0"/> * <element name="wsDataClusterPK" type="{http://www.talend.com/mdm}WSDataClusterPK" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSGetItemsSort", propOrder = { "conceptName", "dir", "maxItems", "skip", "sort", "spellTreshold", "totalCountOnFirstResult", "whereItem", "wsDataClusterPK" }) public class WSGetItemsSort { protected String conceptName; protected String dir; protected int maxItems; protected int skip; protected String sort; protected int spellTreshold; protected Boolean totalCountOnFirstResult; protected WSWhereItem whereItem; protected WSDataClusterPK wsDataClusterPK; /** * Default no-arg constructor * */ public WSGetItemsSort() { super(); } /** * Fully-initialising value constructor * */ public WSGetItemsSort(final String conceptName, final String dir, final int maxItems, final int skip, final String sort, final int spellTreshold, final Boolean totalCountOnFirstResult, final WSWhereItem whereItem, final WSDataClusterPK wsDataClusterPK) { this.conceptName = conceptName; this.dir = dir; this.maxItems = maxItems; this.skip = skip; this.sort = sort; this.spellTreshold = spellTreshold; this.totalCountOnFirstResult = totalCountOnFirstResult; this.whereItem = whereItem; this.wsDataClusterPK = wsDataClusterPK; } /** * Gets the value of the conceptName property. * * @return * possible object is * {@link String } * */ public String getConceptName() { return conceptName; } /** * Sets the value of the conceptName property. * * @param value * allowed object is * {@link String } * */ public void setConceptName(String value) { this.conceptName = value; } /** * Gets the value of the dir property. * * @return * possible object is * {@link String } * */ public String getDir() { return dir; } /** * Sets the value of the dir property. * * @param value * allowed object is * {@link String } * */ public void setDir(String value) { this.dir = value; } /** * Gets the value of the maxItems property. * */ public int getMaxItems() { return maxItems; } /** * Sets the value of the maxItems property. * */ public void setMaxItems(int value) { this.maxItems = value; } /** * Gets the value of the skip property. * */ public int getSkip() { return skip; } /** * Sets the value of the skip property. * */ public void setSkip(int value) { this.skip = value; } /** * Gets the value of the sort property. * * @return * possible object is * {@link String } * */ public String getSort() { return sort; } /** * Sets the value of the sort property. * * @param value * allowed object is * {@link String } * */ public void setSort(String value) { this.sort = value; } /** * Gets the value of the spellTreshold property. * */ public int getSpellTreshold() { return spellTreshold; } /** * Sets the value of the spellTreshold property. * */ public void setSpellTreshold(int value) { this.spellTreshold = value; } /** * Gets the value of the totalCountOnFirstResult property. * * @return * possible object is * {@link Boolean } * */ public Boolean isTotalCountOnFirstResult() { return totalCountOnFirstResult; } /** * Sets the value of the totalCountOnFirstResult property. * * @param value * allowed object is * {@link Boolean } * */ public void setTotalCountOnFirstResult(Boolean value) { this.totalCountOnFirstResult = value; } /** * Gets the value of the whereItem property. * * @return * possible object is * {@link WSWhereItem } * */ public WSWhereItem getWhereItem() { return whereItem; } /** * Sets the value of the whereItem property. * * @param value * allowed object is * {@link WSWhereItem } * */ public void setWhereItem(WSWhereItem value) { this.whereItem = value; } /** * Gets the value of the wsDataClusterPK property. * * @return * possible object is * {@link WSDataClusterPK } * */ public WSDataClusterPK getWsDataClusterPK() { return wsDataClusterPK; } /** * Sets the value of the wsDataClusterPK property. * * @param value * allowed object is * {@link WSDataClusterPK } * */ public void setWsDataClusterPK(WSDataClusterPK value) { this.wsDataClusterPK = value; } }