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 WSQuickSearch complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSQuickSearch"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="direction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="matchAllWords" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * <element name="maxItems" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="orderBy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="searchedValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="skip" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="spellTreshold" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="wsDataClusterPK" type="{http://www.talend.com/mdm}WSDataClusterPK" minOccurs="0"/> * <element name="wsViewPK" type="{http://www.talend.com/mdm}WSViewPK" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSQuickSearch", propOrder = { "direction", "matchAllWords", "maxItems", "orderBy", "searchedValue", "skip", "spellTreshold", "wsDataClusterPK", "wsViewPK" }) public class WSQuickSearch { protected String direction; protected boolean matchAllWords; protected int maxItems; protected String orderBy; protected String searchedValue; protected int skip; protected int spellTreshold; protected WSDataClusterPK wsDataClusterPK; protected WSViewPK wsViewPK; /** * Default no-arg constructor * */ public WSQuickSearch() { super(); } /** * Fully-initialising value constructor * */ public WSQuickSearch(final String direction, final boolean matchAllWords, final int maxItems, final String orderBy, final String searchedValue, final int skip, final int spellTreshold, final WSDataClusterPK wsDataClusterPK, final WSViewPK wsViewPK) { this.direction = direction; this.matchAllWords = matchAllWords; this.maxItems = maxItems; this.orderBy = orderBy; this.searchedValue = searchedValue; this.skip = skip; this.spellTreshold = spellTreshold; this.wsDataClusterPK = wsDataClusterPK; this.wsViewPK = wsViewPK; } /** * Gets the value of the direction property. * * @return * possible object is * {@link String } * */ public String getDirection() { return direction; } /** * Sets the value of the direction property. * * @param value * allowed object is * {@link String } * */ public void setDirection(String value) { this.direction = value; } /** * Gets the value of the matchAllWords property. * */ public boolean isMatchAllWords() { return matchAllWords; } /** * Sets the value of the matchAllWords property. * */ public void setMatchAllWords(boolean value) { this.matchAllWords = 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 orderBy property. * * @return * possible object is * {@link String } * */ public String getOrderBy() { return orderBy; } /** * Sets the value of the orderBy property. * * @param value * allowed object is * {@link String } * */ public void setOrderBy(String value) { this.orderBy = value; } /** * Gets the value of the searchedValue property. * * @return * possible object is * {@link String } * */ public String getSearchedValue() { return searchedValue; } /** * Sets the value of the searchedValue property. * * @param value * allowed object is * {@link String } * */ public void setSearchedValue(String value) { this.searchedValue = 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 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 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; } /** * Gets the value of the wsViewPK property. * * @return * possible object is * {@link WSViewPK } * */ public WSViewPK getWsViewPK() { return wsViewPK; } /** * Sets the value of the wsViewPK property. * * @param value * allowed object is * {@link WSViewPK } * */ public void setWsViewPK(WSViewPK value) { this.wsViewPK = value; } }