com.payline.ws.model.WebPaymentAPI_Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payline-java-sdk Show documentation
Show all versions of payline-java-sdk Show documentation
The Payline API provides access to the various functions of the Payline payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms. This SDK covers all the functions of the Payline payment solution.
package com.payline.ws.model;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceException;
import javax.xml.ws.WebServiceFeature;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.3.2
* Generated source version: 2.2
*
*/
@WebServiceClient(name = "WebPaymentAPI", targetNamespace = "http://impl.ws.payline.experian.com", wsdlLocation = "wsdls/WebPaymentAPI.wsdl")
public class WebPaymentAPI_Service
extends Service
{
private final static URL WEBPAYMENTAPI_WSDL_LOCATION;
private final static WebServiceException WEBPAYMENTAPI_EXCEPTION;
private final static QName WEBPAYMENTAPI_QNAME = new QName("http://impl.ws.payline.experian.com", "WebPaymentAPI");
static {
WEBPAYMENTAPI_WSDL_LOCATION = com.payline.ws.model.WebPaymentAPI_Service.class.getResource("wsdls/WebPaymentAPI.wsdl");
WebServiceException e = null;
if (WEBPAYMENTAPI_WSDL_LOCATION == null) {
e = new WebServiceException("Cannot find 'wsdls/WebPaymentAPI.wsdl' wsdl. Place the resource correctly in the classpath.");
}
WEBPAYMENTAPI_EXCEPTION = e;
}
public WebPaymentAPI_Service() {
super(__getWsdlLocation(), WEBPAYMENTAPI_QNAME);
}
public WebPaymentAPI_Service(WebServiceFeature... features) {
super(__getWsdlLocation(), WEBPAYMENTAPI_QNAME, features);
}
public WebPaymentAPI_Service(URL wsdlLocation) {
super(wsdlLocation, WEBPAYMENTAPI_QNAME);
}
public WebPaymentAPI_Service(URL wsdlLocation, WebServiceFeature... features) {
super(wsdlLocation, WEBPAYMENTAPI_QNAME, features);
}
public WebPaymentAPI_Service(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public WebPaymentAPI_Service(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns WebPaymentAPI
*/
@WebEndpoint(name = "WebPaymentAPI")
public WebPaymentAPI getWebPaymentAPI() {
return super.getPort(new QName("http://impl.ws.payline.experian.com", "WebPaymentAPI"), WebPaymentAPI.class);
}
/**
*
* @param features
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features
parameter will have their default values.
* @return
* returns WebPaymentAPI
*/
@WebEndpoint(name = "WebPaymentAPI")
public WebPaymentAPI getWebPaymentAPI(WebServiceFeature... features) {
return super.getPort(new QName("http://impl.ws.payline.experian.com", "WebPaymentAPI"), WebPaymentAPI.class, features);
}
private static URL __getWsdlLocation() {
if (WEBPAYMENTAPI_EXCEPTION!= null) {
throw WEBPAYMENTAPI_EXCEPTION;
}
return WEBPAYMENTAPI_WSDL_LOCATION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy