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

fish.focus.schema.exchange.source.v1.ExchangeDataSourceQueueService Maven / Gradle / Ivy

package fish.focus.schema.exchange.source.v1;

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 3.5.4
 * 2024-09-05T09:23:39.733+02:00
 * Generated source version: 3.5.4
 *
 */
@WebServiceClient(name = "ExchangeDataSourceQueueService",
                  wsdlLocation = "file:/opt/jenkins/workspace/Focus_UVMS-ExchangeModule_main/model/src/main/resources/contract/ExchangeDataSourceService.wsdl",
                  targetNamespace = "urn:source.exchange.schema.focus.fish:v1")
public class ExchangeDataSourceQueueService extends Service {

    public final static URL WSDL_LOCATION;

    public final static QName SERVICE = new QName("urn:source.exchange.schema.focus.fish:v1", "ExchangeDataSourceQueueService");
    public final static QName DataSourcePortType = new QName("urn:source.exchange.schema.focus.fish:v1", "DataSourcePortType");
    static {
        URL url = null;
        try {
            url = new URL("file:/opt/jenkins/workspace/Focus_UVMS-ExchangeModule_main/model/src/main/resources/contract/ExchangeDataSourceService.wsdl");
        } catch (MalformedURLException e) {
            java.util.logging.Logger.getLogger(ExchangeDataSourceQueueService.class.getName())
                .log(java.util.logging.Level.INFO,
                     "Can not initialize the default wsdl from {0}", "file:/opt/jenkins/workspace/Focus_UVMS-ExchangeModule_main/model/src/main/resources/contract/ExchangeDataSourceService.wsdl");
        }
        WSDL_LOCATION = url;
    }

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

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

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

    public ExchangeDataSourceQueueService(WebServiceFeature ... features) {
        super(WSDL_LOCATION, SERVICE, features);
    }

    public ExchangeDataSourceQueueService(URL wsdlLocation, WebServiceFeature ... features) {
        super(wsdlLocation, SERVICE, features);
    }

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




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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy