|
package art.servers.gost.atex5.generated;
|
|
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>Clase Java para anonymous complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType>
|
* <complexContent>
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <sequence>
|
* <element name="criterioConsulta" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
* <element name="codigoRetorno" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
* <element name="datos" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "", propOrder = {
|
"criterioConsulta",
|
"codigoRetorno",
|
"datos"
|
})
|
@XmlRootElement(name = "tuplaDatos")
|
public class TuplaDatos {
|
|
@XmlElement(required = true)
|
protected String criterioConsulta;
|
@XmlElement(required = true)
|
protected String codigoRetorno;
|
@XmlElement(required = true)
|
protected String datos;
|
|
/**
|
* Obtiene el valor de la propiedad criterioConsulta.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getCriterioConsulta() {
|
return criterioConsulta;
|
}
|
|
/**
|
* Define el valor de la propiedad criterioConsulta.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setCriterioConsulta(String value) {
|
this.criterioConsulta = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad codigoRetorno.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getCodigoRetorno() {
|
return codigoRetorno;
|
}
|
|
/**
|
* Define el valor de la propiedad codigoRetorno.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setCodigoRetorno(String value) {
|
this.codigoRetorno = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad datos.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getDatos() {
|
return datos;
|
}
|
|
/**
|
* Define el valor de la propiedad datos.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setDatos(String value) {
|
this.datos = value;
|
}
|
|
}
|