623 lines
16 KiB
Plaintext
Executable File
623 lines
16 KiB
Plaintext
Executable File
|
|
package ec.gob.registrocivil.consultacedula;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
/**
|
|
* <p>Clase Java para cedula complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <pre>
|
|
* <complexType name="cedula">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="CalleDomicilio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="Cedula" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="CodigoError" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="CondicionCedulado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="Conyuge" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="Domicilio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="Error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="EstadoCivil" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="FechaCedulacion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="FechaNacimiento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="FirmaElectronica" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="Genero" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="IndividualDactilar" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="Instruccion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="LugarNacimiento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="Nacionalidad" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="NombreMadre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="NombrePadre" 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="NumeroDomicilio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="Profesion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "cedula", propOrder = {
|
|
"calleDomicilio",
|
|
"cedula",
|
|
"codigoError",
|
|
"condicionCedulado",
|
|
"conyuge",
|
|
"domicilio",
|
|
"error",
|
|
"estadoCivil",
|
|
"fechaCedulacion",
|
|
"fechaNacimiento",
|
|
"firmaElectronica",
|
|
"genero",
|
|
"individualDactilar",
|
|
"instruccion",
|
|
"lugarNacimiento",
|
|
"nacionalidad",
|
|
"nombreMadre",
|
|
"nombrePadre",
|
|
"nombre",
|
|
"numeroDomicilio",
|
|
"profesion"
|
|
})
|
|
public class Cedula {
|
|
|
|
@XmlElement(name = "CalleDomicilio")
|
|
protected String calleDomicilio;
|
|
@XmlElement(name = "Cedula")
|
|
protected String cedula;
|
|
@XmlElement(name = "CodigoError")
|
|
protected String codigoError;
|
|
@XmlElement(name = "CondicionCedulado")
|
|
protected String condicionCedulado;
|
|
@XmlElement(name = "Conyuge")
|
|
protected String conyuge;
|
|
@XmlElement(name = "Domicilio")
|
|
protected String domicilio;
|
|
@XmlElement(name = "Error")
|
|
protected String error;
|
|
@XmlElement(name = "EstadoCivil")
|
|
protected String estadoCivil;
|
|
@XmlElement(name = "FechaCedulacion")
|
|
protected String fechaCedulacion;
|
|
@XmlElement(name = "FechaNacimiento")
|
|
protected String fechaNacimiento;
|
|
@XmlElement(name = "FirmaElectronica")
|
|
protected String firmaElectronica;
|
|
@XmlElement(name = "Genero")
|
|
protected String genero;
|
|
@XmlElement(name = "IndividualDactilar")
|
|
protected String individualDactilar;
|
|
@XmlElement(name = "Instruccion")
|
|
protected String instruccion;
|
|
@XmlElement(name = "LugarNacimiento")
|
|
protected String lugarNacimiento;
|
|
@XmlElement(name = "Nacionalidad")
|
|
protected String nacionalidad;
|
|
@XmlElement(name = "NombreMadre")
|
|
protected String nombreMadre;
|
|
@XmlElement(name = "NombrePadre")
|
|
protected String nombrePadre;
|
|
@XmlElement(name = "Nombre")
|
|
protected String nombre;
|
|
@XmlElement(name = "NumeroDomicilio")
|
|
protected String numeroDomicilio;
|
|
@XmlElement(name = "Profesion")
|
|
protected String profesion;
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad calleDomicilio.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCalleDomicilio() {
|
|
return calleDomicilio;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad calleDomicilio.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCalleDomicilio(String value) {
|
|
this.calleDomicilio = value;
|
|
}
|
|
|
|
/**
|
|
* 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 codigoError.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCodigoError() {
|
|
return codigoError;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad codigoError.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCodigoError(String value) {
|
|
this.codigoError = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad condicionCedulado.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCondicionCedulado() {
|
|
return condicionCedulado;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad condicionCedulado.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCondicionCedulado(String value) {
|
|
this.condicionCedulado = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad conyuge.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getConyuge() {
|
|
return conyuge;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad conyuge.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setConyuge(String value) {
|
|
this.conyuge = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad domicilio.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getDomicilio() {
|
|
return domicilio;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad domicilio.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setDomicilio(String value) {
|
|
this.domicilio = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad error.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getError() {
|
|
return error;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad error.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setError(String value) {
|
|
this.error = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad estadoCivil.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getEstadoCivil() {
|
|
return estadoCivil;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad estadoCivil.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setEstadoCivil(String value) {
|
|
this.estadoCivil = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad fechaCedulacion.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getFechaCedulacion() {
|
|
return fechaCedulacion;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad fechaCedulacion.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setFechaCedulacion(String value) {
|
|
this.fechaCedulacion = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad fechaNacimiento.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getFechaNacimiento() {
|
|
return fechaNacimiento;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad fechaNacimiento.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setFechaNacimiento(String value) {
|
|
this.fechaNacimiento = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad firmaElectronica.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getFirmaElectronica() {
|
|
return firmaElectronica;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad firmaElectronica.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setFirmaElectronica(String value) {
|
|
this.firmaElectronica = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad genero.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getGenero() {
|
|
return genero;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad genero.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setGenero(String value) {
|
|
this.genero = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad individualDactilar.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getIndividualDactilar() {
|
|
return individualDactilar;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad individualDactilar.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setIndividualDactilar(String individualDactilar) {
|
|
this.individualDactilar = individualDactilar;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad instruccion.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getInstruccion() {
|
|
return instruccion;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad instruccion.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setInstruccion(String value) {
|
|
this.instruccion = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad lugarNacimiento.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getLugarNacimiento() {
|
|
return lugarNacimiento;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad lugarNacimiento.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setLugarNacimiento(String value) {
|
|
this.lugarNacimiento = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad nacionalidad.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getNacionalidad() {
|
|
return nacionalidad;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad nacionalidad.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setNacionalidad(String value) {
|
|
this.nacionalidad = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad nombreMadre.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getNombreMadre() {
|
|
return nombreMadre;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad nombreMadre.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setNombreMadre(String value) {
|
|
this.nombreMadre = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad nombrePadre.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getNombrePadre() {
|
|
return nombrePadre;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad nombrePadre.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setNombrePadre(String value) {
|
|
this.nombrePadre = 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 numeroDomicilio.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getNumeroDomicilio() {
|
|
return numeroDomicilio;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad numeroDomicilio.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setNumeroDomicilio(String value) {
|
|
this.numeroDomicilio = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad profesion.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getProfesion() {
|
|
return profesion;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad profesion.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setProfesion(String value) {
|
|
this.profesion = value;
|
|
}
|
|
|
|
}
|