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

org.apache.cxf.wsn.jaxws.PausableSubscriptionManagerService Maven / Gradle / Ivy

The newest version!
package org.apache.cxf.wsn.jaxws;

import java.net.MalformedURLException;
import java.net.URI;
import java.net.URL;
import jakarta.annotation.Generated;
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;
import org.oasis_open.docs.wsn.bw_2.PausableSubscriptionManager;

/**
 * This class was generated by Apache CXF 4.0.5
 * 2024-07-11T18:15:27.945-04:00
 * Generated source version: 4.0.5
 *
 */
@WebServiceClient(name = "PausableSubscriptionManagerService",
                  wsdlLocation = "file:/Users/ffang/projects/cxf-release-2024july/target/checkout/services/wsn/wsn-api/src/main/resources/org/apache/cxf/wsn/wsdl/wsn.wsdl",
                  targetNamespace = "http://cxf.apache.org/wsn/jaxws")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00", comments = "Apache CXF 4.0.5")
public class PausableSubscriptionManagerService extends Service {

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public static final URL WSDL_LOCATION;

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public static final QName SERVICE = new QName("http://cxf.apache.org/wsn/jaxws", "PausableSubscriptionManagerService");
    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public static final QName PausableSubscriptionManagerPort = new QName("http://cxf.apache.org/wsn/jaxws", "PausableSubscriptionManagerPort");
    static {
        URL url = null;
        try {
            url = URI.create("file:/Users/ffang/projects/cxf-release-2024july/target/checkout/services/wsn/wsn-api/src/main/resources/org/apache/cxf/wsn/wsdl/wsn.wsdl").toURL();
        } catch (MalformedURLException e) {
            java.util.logging.Logger.getLogger(PausableSubscriptionManagerService.class.getName())
                .log(java.util.logging.Level.INFO,
                     "Can not initialize the default wsdl from {0}", "file:/Users/ffang/projects/cxf-release-2024july/target/checkout/services/wsn/wsn-api/src/main/resources/org/apache/cxf/wsn/wsdl/wsn.wsdl");
        }
        WSDL_LOCATION = url;
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public PausableSubscriptionManagerService(URL wsdlLocation) {
        super(wsdlLocation, SERVICE);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public PausableSubscriptionManagerService(URL wsdlLocation, QName serviceName) {
        super(wsdlLocation, serviceName);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public PausableSubscriptionManagerService() {
        super(WSDL_LOCATION, SERVICE);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public PausableSubscriptionManagerService(WebServiceFeature ... features) {
        super(WSDL_LOCATION, SERVICE, features);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public PausableSubscriptionManagerService(URL wsdlLocation, WebServiceFeature ... features) {
        super(wsdlLocation, SERVICE, features);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public PausableSubscriptionManagerService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
        super(wsdlLocation, serviceName, features);
    }




    /**
     *
     * @return
     *     returns PausableSubscriptionManager
     */
    @WebEndpoint(name = "PausableSubscriptionManagerPort")
    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public PausableSubscriptionManager getPausableSubscriptionManagerPort() {
        return super.getPort(PausableSubscriptionManagerPort, PausableSubscriptionManager.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 PausableSubscriptionManager
     */
    @WebEndpoint(name = "PausableSubscriptionManagerPort")
    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.945-04:00")
    public PausableSubscriptionManager getPausableSubscriptionManagerPort(WebServiceFeature... features) {
        return super.getPort(PausableSubscriptionManagerPort, PausableSubscriptionManager.class, features);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy