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.wsrf.rpw_2.GetResourceProperty;
016
017 /**
018 * This class was generated by Apache CXF 2.2.0.0-fuse
019 * Tue May 05 21:33:19 EDT 2009
020 * Generated source version: 2.2.0.0-fuse
021 *
022 */
023
024
025 @WebServiceClient(name = "GetResourcePropertyService",
026 wsdlLocation = "file:/x1/cruise/components-2009.01.0.1-fuse/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 GetResourcePropertyService extends Service {
029
030 public final static URL WSDL_LOCATION;
031 public final static QName SERVICE = new QName("http://servicemix.apache.org/wsn/jaxws", "GetResourcePropertyService");
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:/x1/cruise/components-2009.01.0.1-fuse/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:/x1/cruise/components-2009.01.0.1-fuse/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 GetResourcePropertyService(URL wsdlLocation) {
045 super(wsdlLocation, SERVICE);
046 }
047
048 public GetResourcePropertyService(URL wsdlLocation, QName serviceName) {
049 super(wsdlLocation, serviceName);
050 }
051
052 public GetResourcePropertyService() {
053 super(WSDL_LOCATION, SERVICE);
054 }
055
056 /**
057 *
058 * @return
059 * returns GetResourceProperty
060 */
061 @WebEndpoint(name = "JBI")
062 public GetResourceProperty getJBI() {
063 return super.getPort(JBI, GetResourceProperty.class);
064 }
065
066 /**
067 *
068 * @param features
069 * 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.
070 * @return
071 * returns GetResourceProperty
072 */
073 @WebEndpoint(name = "JBI")
074 public GetResourceProperty getJBI(WebServiceFeature... features) {
075 return super.getPort(JBI, GetResourceProperty.class, features);
076 }
077
078 }