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

com.glookast.api.capture.playout.CapturePlayoutService Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version

package com.glookast.api.capture.playout;

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 = "CapturePlayoutService", targetNamespace = "http://playout.capture.api.glookast.com", wsdlLocation = "/com/glookast/api/capture/playout/playout.wsdl")
public class CapturePlayoutService
    extends Service
{

    private final static URL CAPTUREPLAYOUTSERVICE_WSDL_LOCATION;
    private final static WebServiceException CAPTUREPLAYOUTSERVICE_EXCEPTION;
    private final static QName CAPTUREPLAYOUTSERVICE_QNAME = new QName("http://playout.capture.api.glookast.com", "CapturePlayoutService");

    static {
        CAPTUREPLAYOUTSERVICE_WSDL_LOCATION = com.glookast.api.capture.playout.CapturePlayoutService.class.getResource("/com/glookast/api/capture/playout/playout.wsdl");
        WebServiceException e = null;
        if (CAPTUREPLAYOUTSERVICE_WSDL_LOCATION == null) {
            e = new WebServiceException("Cannot find '/com/glookast/api/capture/playout/playout.wsdl' wsdl. Place the resource correctly in the classpath.");
        }
        CAPTUREPLAYOUTSERVICE_EXCEPTION = e;
    }

    public CapturePlayoutService() {
        super(__getWsdlLocation(), CAPTUREPLAYOUTSERVICE_QNAME);
    }

    public CapturePlayoutService(WebServiceFeature... features) {
        super(__getWsdlLocation(), CAPTUREPLAYOUTSERVICE_QNAME, features);
    }

    public CapturePlayoutService(URL wsdlLocation) {
        super(wsdlLocation, CAPTUREPLAYOUTSERVICE_QNAME);
    }

    public CapturePlayoutService(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, CAPTUREPLAYOUTSERVICE_QNAME, features);
    }

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

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

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

    private static URL __getWsdlLocation() {
        if (CAPTUREPLAYOUTSERVICE_EXCEPTION!= null) {
            throw CAPTUREPLAYOUTSERVICE_EXCEPTION;
        }
        return CAPTUREPLAYOUTSERVICE_WSDL_LOCATION;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy