org.apache.camel.pizza.PizzaService Maven / Gradle / Ivy
/*
*
*/
package org.apache.camel.pizza;
import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceFeature;
import javax.xml.ws.Service;
/**
* This class was generated by Apache CXF 2.2
* Thu May 14 08:14:43 EDT 2009
* Generated source version: 2.2
*
*/
@WebServiceClient(name = "PizzaService",
wsdlLocation = "file:/w1/apache/release/camel/target/checkout/components/camel-cxf/src/test/resources/pizza_service.wsdl",
targetNamespace = "http://camel.apache.org/pizza")
public class PizzaService extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("http://camel.apache.org/pizza", "PizzaService");
public final static QName PizzaPort = new QName("http://camel.apache.org/pizza", "PizzaPort");
static {
URL url = null;
try {
url = new URL("file:/w1/apache/release/camel/target/checkout/components/camel-cxf/src/test/resources/pizza_service.wsdl");
} catch (MalformedURLException e) {
System.err.println("Can not initialize the default wsdl from file:/w1/apache/release/camel/target/checkout/components/camel-cxf/src/test/resources/pizza_service.wsdl");
// e.printStackTrace();
}
WSDL_LOCATION = url;
}
public PizzaService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public PizzaService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public PizzaService() {
super(WSDL_LOCATION, SERVICE);
}
/**
*
* @return
* returns Pizza
*/
@WebEndpoint(name = "PizzaPort")
public Pizza getPizzaPort() {
return super.getPort(PizzaPort, Pizza.class);
}
/**
*
* @param features
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features
parameter will have their default values.
* @return
* returns Pizza
*/
@WebEndpoint(name = "PizzaPort")
public Pizza getPizzaPort(WebServiceFeature... features) {
return super.getPort(PizzaPort, Pizza.class, features);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy