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 = "PublisherRegistrationManagerService", 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 PublisherRegistrationManagerServiceService
015 extends Service
016 {
017
018 private static Map ports = new HashMap();
019 public static Class PublisherRegistrationManager = org.apache.servicemix.wsn.jaxws.PublisherRegistrationManager.class;
020
021 static {
022 ports.put(new QName("http://servicemix.apache.org/wsn/jaxws", "PublisherRegistrationManagerServiceLocalPort"), PublisherRegistrationManager);
023 ports.put(new QName("http://servicemix.apache.org/wsn/jaxws", "JBI"), PublisherRegistrationManager);
024 }
025
026 public PublisherRegistrationManagerServiceService()
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", "PublisherRegistrationManagerService"));
030 }
031
032 public static Map getPortClassMap() {
033 return ports;
034 }
035
036 @WebEndpoint(name = "PublisherRegistrationManagerServiceLocalPort")
037 public org.apache.servicemix.wsn.jaxws.PublisherRegistrationManager getPublisherRegistrationManagerServiceLocalPort() {
038 return ((org.apache.servicemix.wsn.jaxws.PublisherRegistrationManager)(this).getPort(new QName("http://servicemix.apache.org/wsn/jaxws", "PublisherRegistrationManagerServiceLocalPort"), PublisherRegistrationManager));
039 }
040
041 @WebEndpoint(name = "JBI")
042 public org.apache.servicemix.wsn.jaxws.PublisherRegistrationManager getJBI() {
043 return ((org.apache.servicemix.wsn.jaxws.PublisherRegistrationManager)(this).getPort(new QName("http://servicemix.apache.org/wsn/jaxws", "JBI"), PublisherRegistrationManager));
044 }
045
046 }