service.sunat.gob.pe.guiaremision.BillService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sunat-web-services Show documentation
Show all versions of sunat-web-services Show documentation
Sunat Web Services Endpoints
package service.sunat.gob.pe.guiaremision;
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 Apache CXF 3.2.4
* 2018-09-05T17:46:56.295Z
* Generated source version: 3.2.4
*
*/
@WebService(targetNamespace = "http://service.sunat.gob.pe", name = "billService")
@XmlSeeAlso({ObjectFactory.class})
public interface BillService {
@WebMethod(action = "urn:sendBill")
@RequestWrapper(localName = "sendBill", targetNamespace = "http://service.sunat.gob.pe", className = "service.sunat.gob.pe.guiaremision.SendBill")
@ResponseWrapper(localName = "sendBillResponse", targetNamespace = "http://service.sunat.gob.pe", className = "service.sunat.gob.pe.guiaremision.SendBillResponse")
@WebResult(name = "applicationResponse", targetNamespace = "")
public byte[] sendBill(
@WebParam(name = "fileName", targetNamespace = "")
java.lang.String fileName,
@WebParam(name = "contentFile", targetNamespace = "")
javax.activation.DataHandler contentFile,
@WebParam(name = "partyType", targetNamespace = "")
java.lang.String partyType
);
@WebMethod(action = "urn:getStatus")
@RequestWrapper(localName = "getStatus", targetNamespace = "http://service.sunat.gob.pe", className = "service.sunat.gob.pe.guiaremision.GetStatus")
@ResponseWrapper(localName = "getStatusResponse", targetNamespace = "http://service.sunat.gob.pe", className = "service.sunat.gob.pe.guiaremision.GetStatusResponse")
@WebResult(name = "status", targetNamespace = "")
public service.sunat.gob.pe.guiaremision.StatusResponse getStatus(
@WebParam(name = "ticket", targetNamespace = "")
java.lang.String ticket
);
@WebMethod(action = "urn:sendSummary")
@RequestWrapper(localName = "sendSummary", targetNamespace = "http://service.sunat.gob.pe", className = "service.sunat.gob.pe.guiaremision.SendSummary")
@ResponseWrapper(localName = "sendSummaryResponse", targetNamespace = "http://service.sunat.gob.pe", className = "service.sunat.gob.pe.guiaremision.SendSummaryResponse")
@WebResult(name = "ticket", targetNamespace = "")
public java.lang.String sendSummary(
@WebParam(name = "fileName", targetNamespace = "")
java.lang.String fileName,
@WebParam(name = "contentFile", targetNamespace = "")
javax.activation.DataHandler contentFile,
@WebParam(name = "partyType", targetNamespace = "")
java.lang.String partyType
);
@WebMethod(action = "urn:sendPack")
@RequestWrapper(localName = "sendPack", targetNamespace = "http://service.sunat.gob.pe", className = "service.sunat.gob.pe.guiaremision.SendPack")
@ResponseWrapper(localName = "sendPackResponse", targetNamespace = "http://service.sunat.gob.pe", className = "service.sunat.gob.pe.guiaremision.SendPackResponse")
@WebResult(name = "ticket", targetNamespace = "")
public java.lang.String sendPack(
@WebParam(name = "fileName", targetNamespace = "")
java.lang.String fileName,
@WebParam(name = "contentFile", targetNamespace = "")
javax.activation.DataHandler contentFile,
@WebParam(name = "partyType", targetNamespace = "")
java.lang.String partyType
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy