44 lines
1.4 KiB
Plaintext
Executable File
44 lines
1.4 KiB
Plaintext
Executable File
|
|
package com.fp.armas.portal.webservices.snap.ruc;
|
|
|
|
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.gov.sri.wsconsultacontribuyente.ContribuyenteCompleto;
|
|
|
|
|
|
/**
|
|
* This class was generated by the JAX-WS RI.
|
|
* JAX-WS RI 2.2.6b21
|
|
* Generated source version: 2.2
|
|
*
|
|
*/
|
|
@WebService(name = "RucServicio", targetNamespace = "http://ruc.snap.webservices.fp.com/")
|
|
@XmlSeeAlso({
|
|
com.fp.armas.portal.webservices.snap.ruc.ObjectFactory.class,
|
|
ec.gov.sri.wsconsultacontribuyente.ObjectFactory.class
|
|
})
|
|
public interface RucServicio {
|
|
|
|
|
|
/**
|
|
*
|
|
* @param ruc
|
|
* @return
|
|
* returns ec.gov.sri.wsconsultacontribuyente.Contribuyente
|
|
*/
|
|
@WebMethod
|
|
@WebResult(targetNamespace = "")
|
|
@RequestWrapper(localName = "consultarRuc", targetNamespace = "http://ruc.snap.webservices.fp.com/", className = "com.fp.armas.portal.webservices.snap.ruc.ConsultarRuc")
|
|
@ResponseWrapper(localName = "consultarRucResponse", targetNamespace = "http://ruc.snap.webservices.fp.com/", className = "com.fp.armas.portal.webservices.snap.ruc.ConsultarRucResponse")
|
|
public ContribuyenteCompleto consultarRuc(
|
|
@WebParam(name = "ruc", targetNamespace = "")
|
|
String ruc);
|
|
|
|
}
|