20 lines
427 B
Plaintext
Executable File
20 lines
427 B
Plaintext
Executable File
package com.fp.webservices.snap.cedula;
|
|
|
|
import javax.jws.WebMethod;
|
|
import javax.jws.WebParam;
|
|
import javax.jws.WebService;
|
|
|
|
import ec.gob.registrocivil.consultacedula.Cedula;
|
|
|
|
/**
|
|
* Servicio que contiene los datos de la cédula de identidad en el registro civil
|
|
* @author dcruz
|
|
*
|
|
*/
|
|
@WebService
|
|
public interface CedulaServicio {
|
|
|
|
@WebMethod
|
|
public Cedula consultarCedula(@WebParam(name="cedula")String cedula);
|
|
}
|