58 lines
2.1 KiB
Plaintext
Executable File
58 lines
2.1 KiB
Plaintext
Executable File
|
|
package ec.gob.registrocivil.consultacedula;
|
|
|
|
import javax.jws.WebMethod;
|
|
import javax.jws.WebParam;
|
|
import javax.jws.WebResult;
|
|
import javax.jws.WebService;
|
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
import javax.xml.ws.RequestWrapper;
|
|
import javax.xml.ws.ResponseWrapper;
|
|
|
|
|
|
/**
|
|
* This class was generated by the JAX-WS RI.
|
|
* JAX-WS RI 2.2.6b21
|
|
* Generated source version: 2.2
|
|
*
|
|
*/
|
|
@WebService(name = "WSRegistroCivilConsultaCedula", targetNamespace = "http://www.registrocivil.gob.ec/ConsultaCedula")
|
|
@XmlSeeAlso({
|
|
ObjectFactory.class
|
|
})
|
|
public interface WSRegistroCivilConsultaCedula {
|
|
|
|
|
|
/**
|
|
*
|
|
* @param usuario
|
|
* @param contrasenia
|
|
* @param cedula
|
|
* @return
|
|
* returns ec.gob.registrocivil.consultacedula.Cedula
|
|
*/
|
|
@WebMethod(operationName = "BusquedaPorCedula")
|
|
@WebResult(targetNamespace = "")
|
|
@RequestWrapper(localName = "BusquedaPorCedula", targetNamespace = "http://www.registrocivil.gob.ec/ConsultaCedula", className = "ec.gob.registrocivil.consultacedula.BusquedaPorCedula")
|
|
@ResponseWrapper(localName = "BusquedaPorCedulaResponse", targetNamespace = "http://www.registrocivil.gob.ec/ConsultaCedula", className = "ec.gob.registrocivil.consultacedula.BusquedaPorCedulaResponse")
|
|
public Cedula busquedaPorCedula(
|
|
@WebParam(name = "Cedula", targetNamespace = "")
|
|
String cedula,
|
|
@WebParam(name = "Usuario", targetNamespace = "")
|
|
String usuario,
|
|
@WebParam(name = "Contrasenia", targetNamespace = "")
|
|
String contrasenia);
|
|
|
|
/**
|
|
*
|
|
* @return
|
|
* returns ec.gob.registrocivil.consultacedula.Cedula
|
|
*/
|
|
@WebMethod(operationName = "WsUp")
|
|
@WebResult(targetNamespace = "")
|
|
@RequestWrapper(localName = "WsUp", targetNamespace = "http://www.registrocivil.gob.ec/ConsultaCedula", className = "ec.gob.registrocivil.consultacedula.WsUp")
|
|
@ResponseWrapper(localName = "WsUpResponse", targetNamespace = "http://www.registrocivil.gob.ec/ConsultaCedula", className = "ec.gob.registrocivil.consultacedula.WsUpResponse")
|
|
public Cedula wsUp();
|
|
|
|
}
|