/**
* Axelor Business Solutions
*
* Copyright (C) 2016 Axelor (<http://axelor.com>).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.qas.web_2005_02;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Classe Java pour anonymous complex type.
*
* <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Country" type="{http://www.qas.com/web-2005-02}ISOType"/>
* <element name="Engine" type="{http://www.qas.com/web-2005-02}EngineType"/>
* <element name="Layout" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="QAConfig" type="{http://www.qas.com/web-2005-02}QAConfigType" minOccurs="0"/>
* <element name="Search" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"country",
"engine",
"layout",
"qaConfig",
"search"
})
@XmlRootElement(name = "QASearch")
public class QASearch {
@XmlElement(name = "Country", required = true)
protected String country;
@XmlElement(name = "Engine", required = true)
protected EngineType engine;
@XmlElement(name = "Layout")
protected String layout;
@XmlElement(name = "QAConfig")
protected QAConfigType qaConfig;
@XmlElement(name = "Search", required = true)
protected String search;
/**
* Obtient la valeur de la propriété country.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountry() {
return country;
}
/**
* Définit la valeur de la propriété country.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountry(String value) {
this.country = value;
}
/**
* Obtient la valeur de la propriété engine.
*
* @return
* possible object is
* {@link EngineType }
*
*/
public EngineType getEngine() {
return engine;
}
/**
* Définit la valeur de la propriété engine.
*
* @param value
* allowed object is
* {@link EngineType }
*
*/
public void setEngine(EngineType value) {
this.engine = value;
}
/**
* Obtient la valeur de la propriété layout.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLayout() {
return layout;
}
/**
* Définit la valeur de la propriété layout.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLayout(String value) {
this.layout = value;
}
/**
* Obtient la valeur de la propriété qaConfig.
*
* @return
* possible object is
* {@link QAConfigType }
*
*/
public QAConfigType getQAConfig() {
return qaConfig;
}
/**
* Définit la valeur de la propriété qaConfig.
*
* @param value
* allowed object is
* {@link QAConfigType }
*
*/
public void setQAConfig(QAConfigType value) {
this.qaConfig = value;
}
/**
* Obtient la valeur de la propriété search.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSearch() {
return search;
}
/**
* Définit la valeur de la propriété search.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSearch(String value) {
this.search = value;
}
}