/** * 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.XmlAttribute; 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="Moniker" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Refinement" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="QAConfig" type="{http://www.qas.com/web-2005-02}QAConfigType" minOccurs="0"/> * </sequence> * <attribute name="Threshold" type="{http://www.qas.com/web-2005-02}ThresholdType" /> * <attribute name="Timeout" type="{http://www.qas.com/web-2005-02}TimeoutType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "moniker", "refinement", "qaConfig" }) @XmlRootElement(name = "QARefine") public class QARefine { @XmlElement(name = "Moniker", required = true) protected String moniker; @XmlElement(name = "Refinement", required = true) protected String refinement; @XmlElement(name = "QAConfig") protected QAConfigType qaConfig; @XmlAttribute(name = "Threshold") protected Integer threshold; @XmlAttribute(name = "Timeout") protected Integer timeout; /** * Obtient la valeur de la propriété moniker. * * @return * possible object is * {@link String } * */ public String getMoniker() { return moniker; } /** * Définit la valeur de la propriété moniker. * * @param value * allowed object is * {@link String } * */ public void setMoniker(String value) { this.moniker = value; } /** * Obtient la valeur de la propriété refinement. * * @return * possible object is * {@link String } * */ public String getRefinement() { return refinement; } /** * Définit la valeur de la propriété refinement. * * @param value * allowed object is * {@link String } * */ public void setRefinement(String value) { this.refinement = 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é threshold. * * @return * possible object is * {@link Integer } * */ public Integer getThreshold() { return threshold; } /** * Définit la valeur de la propriété threshold. * * @param value * allowed object is * {@link Integer } * */ public void setThreshold(Integer value) { this.threshold = value; } /** * Obtient la valeur de la propriété timeout. * * @return * possible object is * {@link Integer } * */ public Integer getTimeout() { return timeout; } /** * Définit la valeur de la propriété timeout. * * @param value * allowed object is * {@link Integer } * */ public void setTimeout(Integer value) { this.timeout = value; } }