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

com.daehosting.webservices.isbn.ISBNService Maven / Gradle / Ivy

The newest version!

/*
 * 
 */

package com.daehosting.webservices.isbn;

import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceFeature;
import javax.xml.ws.Service;

/**
 * This class was generated by Apache CXF 2.4.0
 * 2011-06-03T13:44:09.669+02:00
 * Generated source version: 2.4.0
 * 
 */


@WebServiceClient(name = "ISBNService", 
                  wsdlLocation = "http://webservices.daehosting.com/services/isbnservice.wso?wsdl",
                  targetNamespace = "http://webservices.daehosting.com/ISBN") 
public class ISBNService extends Service {

    public final static URL WSDL_LOCATION;

    public final static QName SERVICE = new QName("http://webservices.daehosting.com/ISBN", "ISBNService");
    public final static QName ISBNServiceSoap = new QName("http://webservices.daehosting.com/ISBN", "ISBNServiceSoap");
    static {
        URL url = null;
        try {
            url = new URL("http://webservices.daehosting.com/services/isbnservice.wso?wsdl");
        } catch (MalformedURLException e) {
            java.util.logging.Logger.getLogger(ISBNService.class.getName())
                .log(java.util.logging.Level.INFO, 
                     "Can not initialize the default wsdl from {0}", "http://webservices.daehosting.com/services/isbnservice.wso?wsdl");
        }
        WSDL_LOCATION = url;
    }

    public ISBNService(URL wsdlLocation) {
        super(wsdlLocation, SERVICE);
    }

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

    public ISBNService() {
        super(WSDL_LOCATION, SERVICE);
    }
    

    /**
     * 
     * @return
     *     returns ISBNServiceSoapType
     */
    @WebEndpoint(name = "ISBNServiceSoap")
    public ISBNServiceSoapType getISBNServiceSoap() {
        return super.getPort(ISBNServiceSoap, ISBNServiceSoapType.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 ISBNServiceSoapType
     */
    @WebEndpoint(name = "ISBNServiceSoap")
    public ISBNServiceSoapType getISBNServiceSoap(WebServiceFeature... features) {
        return super.getPort(ISBNServiceSoap, ISBNServiceSoapType.class, features);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy