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

org.apache.chemistry.opencmis.commons.impl.jaxb.VersioningService Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
package org.apache.chemistry.opencmis.commons.impl.jaxb;

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

/**
 * This class was generated by Apache CXF 4.0.4
 * 2024-04-10T18:10:07.356Z
 * Generated source version: 4.0.4
 *
 */
@WebServiceClient(name = "VersioningService",
                  wsdlLocation = "classpath:/wsdl/cmis11/CMISWS-Service.wsdl",
                  targetNamespace = "http://docs.oasis-open.org/ns/cmis/ws/200908/")
public class VersioningService extends Service {

    public static final URL WSDL_LOCATION;

    public static final QName SERVICE = new QName("http://docs.oasis-open.org/ns/cmis/ws/200908/", "VersioningService");
    public static final QName VersioningServicePort = new QName("http://docs.oasis-open.org/ns/cmis/ws/200908/", "VersioningServicePort");
    static {
        URL url = VersioningService.class.getClassLoader().getResource("/wsdl/cmis11/CMISWS-Service.wsdl");
        if (url == null) {
            url = VersioningService.class.getClassLoader().getResource("wsdl/cmis11/CMISWS-Service.wsdl");
        }
        if (url == null) {
            java.util.logging.Logger.getLogger(VersioningService.class.getName())
                .log(java.util.logging.Level.INFO,
                     "Can not initialize the default wsdl from {0}", "classpath:/wsdl/cmis11/CMISWS-Service.wsdl");
        }
        WSDL_LOCATION = url;
    }

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

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

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

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

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

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




    /**
     *
     * @return
     *     returns VersioningServicePort
     */
    @WebEndpoint(name = "VersioningServicePort")
    public VersioningServicePort getVersioningServicePort() {
        return super.getPort(VersioningServicePort, VersioningServicePort.class);
    }

    /**
     *
     * @param features
     *     A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the features parameter will have their default values.
     * @return
     *     returns VersioningServicePort
     */
    @WebEndpoint(name = "VersioningServicePort")
    public VersioningServicePort getVersioningServicePort(WebServiceFeature... features) {
        return super.getPort(VersioningServicePort, VersioningServicePort.class, features);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy