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

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

Go to download

The servicemix-wsn2005 is a standard JBI Service Engine which implements the WS-Notification specification from Oasis.

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

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;
import org.oasis_open.docs.wsn.bw_2.PausableSubscriptionManager;

/**
 * This class was generated by Apache CXF 2.6.4
 * 2013-01-15T22:03:56.505+01:00
 * Generated source version: 2.6.4
 * 
 */
@WebServiceClient(name = "PausableSubscriptionManagerService", 
                  wsdlLocation = "file:/Users/gert/Projects/ASF/svn/components/target/checkout/engines/servicemix-wsn2005/src/main/resources/org/apache/servicemix/wsn/wsn.wsdl",
                  targetNamespace = "http://servicemix.apache.org/wsn/jaxws") 
public class PausableSubscriptionManagerService extends Service {

    public final static URL WSDL_LOCATION;

    public final static QName SERVICE = new QName("http://servicemix.apache.org/wsn/jaxws", "PausableSubscriptionManagerService");
    public final static QName JBI = new QName("http://servicemix.apache.org/wsn/jaxws", "JBI");
    static {
        URL url = null;
        try {
            url = new URL("file:/Users/gert/Projects/ASF/svn/components/target/checkout/engines/servicemix-wsn2005/src/main/resources/org/apache/servicemix/wsn/wsn.wsdl");
        } 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/gert/Projects/ASF/svn/components/target/checkout/engines/servicemix-wsn2005/src/main/resources/org/apache/servicemix/wsn/wsn.wsdl");
        }
        WSDL_LOCATION = url;
    }

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

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy