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

com.glookast.api.capture_info.CaptureInfoService Maven / Gradle / Ivy


package com.glookast.api.capture_info;

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.0
 * Generated source version: 2.2
 * 
 */
@WebServiceClient(name = "CaptureInfoService", targetNamespace = "http://capture-info.api.glookast.com", wsdlLocation = "/com/glookast/api/capture-info/capture-info.wsdl")
public class CaptureInfoService
    extends Service
{

    private final static URL CAPTUREINFOSERVICE_WSDL_LOCATION;
    private final static WebServiceException CAPTUREINFOSERVICE_EXCEPTION;
    private final static QName CAPTUREINFOSERVICE_QNAME = new QName("http://capture-info.api.glookast.com", "CaptureInfoService");

    static {
        CAPTUREINFOSERVICE_WSDL_LOCATION = com.glookast.api.capture_info.CaptureInfoService.class.getResource("/com/glookast/api/capture-info/capture-info.wsdl");
        WebServiceException e = null;
        if (CAPTUREINFOSERVICE_WSDL_LOCATION == null) {
            e = new WebServiceException("Cannot find '/com/glookast/api/capture-info/capture-info.wsdl' wsdl. Place the resource correctly in the classpath.");
        }
        CAPTUREINFOSERVICE_EXCEPTION = e;
    }

    public CaptureInfoService() {
        super(__getWsdlLocation(), CAPTUREINFOSERVICE_QNAME);
    }

    public CaptureInfoService(WebServiceFeature... features) {
        super(__getWsdlLocation(), CAPTUREINFOSERVICE_QNAME, features);
    }

    public CaptureInfoService(URL wsdlLocation) {
        super(wsdlLocation, CAPTUREINFOSERVICE_QNAME);
    }

    public CaptureInfoService(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, CAPTUREINFOSERVICE_QNAME, features);
    }

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

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

    /**
     * 
     * @return
     *     returns CaptureInfoPort
     */
    @WebEndpoint(name = "CaptureInfoPort")
    public CaptureInfoPort getCaptureInfoPort() {
        return super.getPort(new QName("http://capture-info.api.glookast.com", "CaptureInfoPort"), CaptureInfoPort.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 CaptureInfoPort
     */
    @WebEndpoint(name = "CaptureInfoPort")
    public CaptureInfoPort getCaptureInfoPort(WebServiceFeature... features) {
        return super.getPort(new QName("http://capture-info.api.glookast.com", "CaptureInfoPort"), CaptureInfoPort.class, features);
    }

    private static URL __getWsdlLocation() {
        if (CAPTUREINFOSERVICE_EXCEPTION!= null) {
            throw CAPTUREINFOSERVICE_EXCEPTION;
        }
        return CAPTUREINFOSERVICE_WSDL_LOCATION;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy