maia_modificado/.svn/pristine/de/de6f96f28d458c15df52ea47149...

43 lines
1.4 KiB
Plaintext
Executable File

package com.fp.frontend.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.Contribuyente;
/**
* 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.frontend.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.frontend.webservices.snap.ruc.ConsultarRuc")
@ResponseWrapper(localName = "consultarRucResponse", targetNamespace = "http://ruc.snap.webservices.fp.com/", className = "com.fp.frontend.webservices.snap.ruc.ConsultarRucResponse")
public Contribuyente consultarRuc(
@WebParam(name = "ruc", targetNamespace = "")
String ruc);
}