maia_modificado/.svn/pristine/74/748db445277f67990f8475f23ac...

115 lines
2.5 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>
* &lt;complexType name="contador">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="cedula" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ruc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}