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 WSCount complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSCount"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="countPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="spellTreshold" type="{http://www.w3.org/2001/XMLSchema}int"/> * <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 = "WSCount", propOrder = { "countPath", "spellTreshold", "whereItem", "wsDataClusterPK" }) public class WSCount { protected String countPath; protected int spellTreshold; protected WSWhereItem whereItem; protected WSDataClusterPK wsDataClusterPK; /** * Default no-arg constructor * */ public WSCount() { super(); } /** * Fully-initialising value constructor * */ public WSCount(final String countPath, final int spellTreshold, final WSWhereItem whereItem, final WSDataClusterPK wsDataClusterPK) { this.countPath = countPath; this.spellTreshold = spellTreshold; this.whereItem = whereItem; this.wsDataClusterPK = wsDataClusterPK; } /** * Gets the value of the countPath property. * * @return * possible object is * {@link String } * */ public String getCountPath() { return countPath; } /** * Sets the value of the countPath property. * * @param value * allowed object is * {@link String } * */ public void setCountPath(String value) { this.countPath = 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 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; } }