43 lines
1.4 KiB
Plaintext
Executable File
43 lines
1.4 KiB
Plaintext
Executable File
|
|
package com.fp.frontend.webservices.snap.cedula;
|
|
|
|
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;
|
|
import ec.gob.registrocivil.consultacedula.Cedula;
|
|
|
|
|
|
/**
|
|
* This class was generated by the JAX-WS RI.
|
|
* JAX-WS RI 2.2.6b21
|
|
* Generated source version: 2.2
|
|
*
|
|
*/
|
|
@WebService(name = "CedulaServicio", targetNamespace = "http://cedula.snap.webservices.fp.com/")
|
|
@XmlSeeAlso({
|
|
com.fp.frontend.webservices.snap.cedula.ObjectFactory.class,
|
|
ec.gob.registrocivil.consultacedula.ObjectFactory.class
|
|
})
|
|
public interface CedulaServicio {
|
|
|
|
|
|
/**
|
|
*
|
|
* @param cedula
|
|
* @return
|
|
* returns ec.gob.registrocivil.consultacedula.Cedula
|
|
*/
|
|
@WebMethod
|
|
@WebResult(targetNamespace = "")
|
|
@RequestWrapper(localName = "consultarCedula", targetNamespace = "http://cedula.snap.webservices.fp.com/", className = "com.fp.frontend.webservices.snap.cedula.ConsultarCedula")
|
|
@ResponseWrapper(localName = "consultarCedulaResponse", targetNamespace = "http://cedula.snap.webservices.fp.com/", className = "com.fp.frontend.webservices.snap.cedula.ConsultarCedulaResponse")
|
|
public Cedula consultarCedula(
|
|
@WebParam(name = "cedula", targetNamespace = "")
|
|
String cedula);
|
|
|
|
}
|