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