test.java.uri.helloworld.HelloService Maven / Gradle / Ivy
package uri.helloworld;
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.4.8
* 2012-06-23T09:23:31.727+02:00
* Generated source version: 2.4.8
*
*/
@WebServiceClient(name = "HelloService",
wsdlLocation = "file:/home/jbonofre/workspace/release/components-2011.02.x/target/checkout/bindings/servicemix-cxf-bc/src/test/resources/HelloWorld-DOC.wsdl",
targetNamespace = "uri:HelloWorld")
public class HelloService extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("uri:HelloWorld", "HelloService");
public final static QName HelloPort = new QName("uri:HelloWorld", "HelloPort");
static {
URL url = null;
try {
url = new URL("file:/home/jbonofre/workspace/release/components-2011.02.x/target/checkout/bindings/servicemix-cxf-bc/src/test/resources/HelloWorld-DOC.wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(HelloService.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "file:/home/jbonofre/workspace/release/components-2011.02.x/target/checkout/bindings/servicemix-cxf-bc/src/test/resources/HelloWorld-DOC.wsdl");
}
WSDL_LOCATION = url;
}
public HelloService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public HelloService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public HelloService() {
super(WSDL_LOCATION, SERVICE);
}
/**
*
* @return
* returns HelloPortType
*/
@WebEndpoint(name = "HelloPort")
public HelloPortType getHelloPort() {
return super.getPort(HelloPort, HelloPortType.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 HelloPortType
*/
@WebEndpoint(name = "HelloPort")
public HelloPortType getHelloPort(WebServiceFeature... features) {
return super.getPort(HelloPort, HelloPortType.class, features);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy