88 lines
2.1 KiB
Plaintext
Executable File
88 lines
2.1 KiB
Plaintext
Executable File
|
|
package ec.gov.sri.wsconsultacontribuyente;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
/**
|
|
* <p>Clase Java para obtenerSimple complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <pre>
|
|
* <complexType name="obtenerSimple">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="numeroRuc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="fuenteDatos" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "obtenerSimple", propOrder = {
|
|
"numeroRuc",
|
|
"fuenteDatos"
|
|
})
|
|
public class ObtenerSimple {
|
|
|
|
protected String numeroRuc;
|
|
protected String fuenteDatos;
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad numeroRuc.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getNumeroRuc() {
|
|
return numeroRuc;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad numeroRuc.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setNumeroRuc(String value) {
|
|
this.numeroRuc = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad fuenteDatos.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getFuenteDatos() {
|
|
return fuenteDatos;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad fuenteDatos.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setFuenteDatos(String value) {
|
|
this.fuenteDatos = value;
|
|
}
|
|
|
|
}
|