001    
002    /*
003     * 
004     */
005    
006    package org.apache.servicemix.wsn.jaxws;
007    
008    import java.net.MalformedURLException;
009    import java.net.URL;
010    import javax.xml.namespace.QName;
011    import javax.xml.ws.WebEndpoint;
012    import javax.xml.ws.WebServiceClient;
013    import javax.xml.ws.WebServiceFeature;
014    import javax.xml.ws.Service;
015    import org.oasis_open.docs.wsn.bw_2.PullPoint;
016    
017    /**
018     * This class was generated by Progress FUSE Services Framework 2.2.11-fuse-00-00
019     * Wed Nov 24 09:09:35 GMT 2010
020     * Generated source version: 2.2.11-fuse-00-00
021     * 
022     */
023    
024    
025    @WebServiceClient(name = "PullPointService", 
026                      wsdlLocation = "file:/home/hudson/fuse/servicemix-4.3.0-fuse/components/target/checkout/engines/servicemix-wsn2005/src/main/resources/org/apache/servicemix/wsn/wsn.wsdl",
027                      targetNamespace = "http://servicemix.apache.org/wsn/jaxws") 
028    public class PullPointService extends Service {
029    
030        public final static URL WSDL_LOCATION;
031        public final static QName SERVICE = new QName("http://servicemix.apache.org/wsn/jaxws", "PullPointService");
032        public final static QName JBI = new QName("http://servicemix.apache.org/wsn/jaxws", "JBI");
033        static {
034            URL url = null;
035            try {
036                url = new URL("file:/home/hudson/fuse/servicemix-4.3.0-fuse/components/target/checkout/engines/servicemix-wsn2005/src/main/resources/org/apache/servicemix/wsn/wsn.wsdl");
037            } catch (MalformedURLException e) {
038                System.err.println("Can not initialize the default wsdl from file:/home/hudson/fuse/servicemix-4.3.0-fuse/components/target/checkout/engines/servicemix-wsn2005/src/main/resources/org/apache/servicemix/wsn/wsn.wsdl");
039                // e.printStackTrace();
040            }
041            WSDL_LOCATION = url;
042        }
043    
044        public PullPointService(URL wsdlLocation) {
045            super(wsdlLocation, SERVICE);
046        }
047    
048        public PullPointService(URL wsdlLocation, QName serviceName) {
049            super(wsdlLocation, serviceName);
050        }
051    
052        public PullPointService() {
053            super(WSDL_LOCATION, SERVICE);
054        }
055        
056    
057        /**
058         * 
059         * @return
060         *     returns PullPoint
061         */
062        @WebEndpoint(name = "JBI")
063        public PullPoint getJBI() {
064            return super.getPort(JBI, PullPoint.class);
065        }
066    
067        /**
068         * 
069         * @param features
070         *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
071         * @return
072         *     returns PullPoint
073         */
074        @WebEndpoint(name = "JBI")
075        public PullPoint getJBI(WebServiceFeature... features) {
076            return super.getPort(JBI, PullPoint.class, features);
077        }
078    
079    }