001
002 package org.apache.servicemix.wsn.jaxws;
003
004 import java.net.MalformedURLException;
005 import java.net.URL;
006 import java.util.HashMap;
007 import java.util.Map;
008 import javax.xml.namespace.QName;
009 import javax.xml.ws.Service;
010 import javax.xml.ws.WebEndpoint;
011 import javax.xml.ws.WebServiceClient;
012
013 @WebServiceClient(targetNamespace = "http://servicemix.apache.org/wsn/jaxws", name = "PausableSubscriptionManagerService", wsdlLocation = "file:/x1/TeamCity/buildAgent/work/d1dc7e674680d285/checkout/target/checkout/deployables/serviceengines/servicemix-wsn2005/src/main/resources/org/apache/servicemix/wsn/wsn.wsdl")
014 public class PausableSubscriptionManagerServiceService
015 extends Service
016 {
017
018 private static Map ports = new HashMap();
019 public static Class PausableSubscriptionManager = org.apache.servicemix.wsn.jaxws.PausableSubscriptionManager.class;
020
021 static {
022 ports.put(new QName("http://servicemix.apache.org/wsn/jaxws", "JBI"), PausableSubscriptionManager);
023 ports.put(new QName("http://servicemix.apache.org/wsn/jaxws", "PausableSubscriptionManagerServiceLocalPort"), PausableSubscriptionManager);
024 }
025
026 public PausableSubscriptionManagerServiceService()
027 throws MalformedURLException
028 {
029 super(new URL("file:/x1/TeamCity/buildAgent/work/d1dc7e674680d285/checkout/target/checkout/deployables/serviceengines/servicemix-wsn2005/src/main/resources/org/apache/servicemix/wsn/wsn.wsdl"), new QName("http://servicemix.apache.org/wsn/jaxws", "PausableSubscriptionManagerService"));
030 }
031
032 public static Map getPortClassMap() {
033 return ports;
034 }
035
036 @WebEndpoint(name = "JBI")
037 public org.apache.servicemix.wsn.jaxws.PausableSubscriptionManager getJBI() {
038 return ((org.apache.servicemix.wsn.jaxws.PausableSubscriptionManager)(this).getPort(new QName("http://servicemix.apache.org/wsn/jaxws", "JBI"), PausableSubscriptionManager));
039 }
040
041 @WebEndpoint(name = "PausableSubscriptionManagerServiceLocalPort")
042 public org.apache.servicemix.wsn.jaxws.PausableSubscriptionManager getPausableSubscriptionManagerServiceLocalPort() {
043 return ((org.apache.servicemix.wsn.jaxws.PausableSubscriptionManager)(this).getPort(new QName("http://servicemix.apache.org/wsn/jaxws", "PausableSubscriptionManagerServiceLocalPort"), PausableSubscriptionManager));
044 }
045
046 }