115 lines
2.6 KiB
Plaintext
Executable File
115 lines
2.6 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 contador complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <pre>
|
|
* <complexType name="contador">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="cedula" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="ruc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "contador", propOrder = {
|
|
"cedula",
|
|
"nombre",
|
|
"ruc"
|
|
})
|
|
public class Contador {
|
|
|
|
protected String cedula;
|
|
protected String nombre;
|
|
protected String ruc;
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad cedula.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCedula() {
|
|
return cedula;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad cedula.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCedula(String value) {
|
|
this.cedula = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad nombre.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getNombre() {
|
|
return nombre;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad nombre.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setNombre(String value) {
|
|
this.nombre = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad ruc.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getRuc() {
|
|
return ruc;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad ruc.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setRuc(String value) {
|
|
this.ruc = value;
|
|
}
|
|
|
|
}
|