All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.payline.ws.model.DirectPaymentAPI_Service Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 4.77.1
Show newest version

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 = "DirectPaymentAPI", targetNamespace = "http://impl.ws.payline.experian.com", wsdlLocation = "wsdls/DirectPaymentAPI.wsdl")
public class DirectPaymentAPI_Service
    extends Service
{

    private final static URL DIRECTPAYMENTAPI_WSDL_LOCATION;
    private final static WebServiceException DIRECTPAYMENTAPI_EXCEPTION;
    private final static QName DIRECTPAYMENTAPI_QNAME = new QName("http://impl.ws.payline.experian.com", "DirectPaymentAPI");

    static {
        DIRECTPAYMENTAPI_WSDL_LOCATION = com.payline.ws.model.DirectPaymentAPI_Service.class.getResource("wsdls/DirectPaymentAPI.wsdl");
        WebServiceException e = null;
        if (DIRECTPAYMENTAPI_WSDL_LOCATION == null) {
            e = new WebServiceException("Cannot find 'wsdls/DirectPaymentAPI.wsdl' wsdl. Place the resource correctly in the classpath.");
        }
        DIRECTPAYMENTAPI_EXCEPTION = e;
    }

    public DirectPaymentAPI_Service() {
        super(__getWsdlLocation(), DIRECTPAYMENTAPI_QNAME);
    }

    public DirectPaymentAPI_Service(WebServiceFeature... features) {
        super(__getWsdlLocation(), DIRECTPAYMENTAPI_QNAME, features);
    }

    public DirectPaymentAPI_Service(URL wsdlLocation) {
        super(wsdlLocation, DIRECTPAYMENTAPI_QNAME);
    }

    public DirectPaymentAPI_Service(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, DIRECTPAYMENTAPI_QNAME, features);
    }

    public DirectPaymentAPI_Service(URL wsdlLocation, QName serviceName) {
        super(wsdlLocation, serviceName);
    }

    public DirectPaymentAPI_Service(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
        super(wsdlLocation, serviceName, features);
    }

    /**
     * 
     * @return
     *     returns DirectPaymentAPI
     */
    @WebEndpoint(name = "DirectPaymentAPI")
    public DirectPaymentAPI getDirectPaymentAPI() {
        return super.getPort(new QName("http://impl.ws.payline.experian.com", "DirectPaymentAPI"), DirectPaymentAPI.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 DirectPaymentAPI
     */
    @WebEndpoint(name = "DirectPaymentAPI")
    public DirectPaymentAPI getDirectPaymentAPI(WebServiceFeature... features) {
        return super.getPort(new QName("http://impl.ws.payline.experian.com", "DirectPaymentAPI"), DirectPaymentAPI.class, features);
    }

    private static URL __getWsdlLocation() {
        if (DIRECTPAYMENTAPI_EXCEPTION!= null) {
            throw DIRECTPAYMENTAPI_EXCEPTION;
        }
        return DIRECTPAYMENTAPI_WSDL_LOCATION;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy