119 lines
2.7 KiB
Plaintext
Executable File
119 lines
2.7 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 BusquedaPorCedula complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <pre>
|
|
* <complexType name="BusquedaPorCedula">
|
|
* <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="Usuario" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="Contrasenia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "BusquedaPorCedula", propOrder = {
|
|
"cedula",
|
|
"usuario",
|
|
"contrasenia"
|
|
})
|
|
public class BusquedaPorCedula {
|
|
|
|
@XmlElement(name = "Cedula")
|
|
protected String cedula;
|
|
@XmlElement(name = "Usuario")
|
|
protected String usuario;
|
|
@XmlElement(name = "Contrasenia")
|
|
protected String contrasenia;
|
|
|
|
/**
|
|
* 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 usuario.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getUsuario() {
|
|
return usuario;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad usuario.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setUsuario(String value) {
|
|
this.usuario = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad contrasenia.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getContrasenia() {
|
|
return contrasenia;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad contrasenia.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setContrasenia(String value) {
|
|
this.contrasenia = value;
|
|
}
|
|
|
|
}
|