304 lines
7.1 KiB
Plaintext
Executable File
304 lines
7.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 ubicacionGeografica complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <pre>
|
|
* <complexType name="ubicacionGeografica">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="canton" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="codCanton" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="codPais" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="codParroquia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="codProvincia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="codRegion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="pais" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="parroquia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="provincia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "ubicacionGeografica", propOrder = {
|
|
"canton",
|
|
"codCanton",
|
|
"codPais",
|
|
"codParroquia",
|
|
"codProvincia",
|
|
"codRegion",
|
|
"pais",
|
|
"parroquia",
|
|
"provincia",
|
|
"region"
|
|
})
|
|
public class UbicacionGeografica {
|
|
|
|
protected String canton;
|
|
protected String codCanton;
|
|
protected String codPais;
|
|
protected String codParroquia;
|
|
protected String codProvincia;
|
|
protected String codRegion;
|
|
protected String pais;
|
|
protected String parroquia;
|
|
protected String provincia;
|
|
protected String region;
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad canton.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCanton() {
|
|
return canton;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad canton.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCanton(String value) {
|
|
this.canton = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad codCanton.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCodCanton() {
|
|
return codCanton;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad codCanton.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCodCanton(String value) {
|
|
this.codCanton = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad codPais.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCodPais() {
|
|
return codPais;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad codPais.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCodPais(String value) {
|
|
this.codPais = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad codParroquia.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCodParroquia() {
|
|
return codParroquia;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad codParroquia.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCodParroquia(String value) {
|
|
this.codParroquia = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad codProvincia.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCodProvincia() {
|
|
return codProvincia;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad codProvincia.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCodProvincia(String value) {
|
|
this.codProvincia = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad codRegion.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCodRegion() {
|
|
return codRegion;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad codRegion.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCodRegion(String value) {
|
|
this.codRegion = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad pais.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getPais() {
|
|
return pais;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad pais.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setPais(String value) {
|
|
this.pais = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad parroquia.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getParroquia() {
|
|
return parroquia;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad parroquia.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setParroquia(String value) {
|
|
this.parroquia = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad provincia.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getProvincia() {
|
|
return provincia;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad provincia.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setProvincia(String value) {
|
|
this.provincia = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad region.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getRegion() {
|
|
return region;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad region.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setRegion(String value) {
|
|
this.region = value;
|
|
}
|
|
|
|
}
|