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