com.founder.soapclient.RemotePayService Maven / Gradle / Ivy
The newest version!
package com.founder.soapclient;
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.1.1
* 2021-02-19T21:00:54.687+08:00
* Generated source version: 3.1.1
*
*/
@WebService(targetNamespace = "http://pay.yinhai.com/", name = "RemotePayService")
@XmlSeeAlso({ObjectFactory.class})
public interface RemotePayService {
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "invoke", targetNamespace = "http://pay.yinhai.com/", className = "com.founder.soapclient.Invoke")
@WebMethod
@ResponseWrapper(localName = "invokeResponse", targetNamespace = "http://pay.yinhai.com/", className = "com.founder.soapclient.InvokeResponse")
public String invoke(
@WebParam(name = "arg0", targetNamespace = "")
String arg0
);
}