InheritService.java
package org.apache.cxf.tests.inherit;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URL;
import jakarta.annotation.Generated;
import javax.xml.namespace.QName;
import jakarta.xml.ws.WebEndpoint;
import jakarta.xml.ws.WebServiceClient;
import jakarta.xml.ws.WebServiceFeature;
import jakarta.xml.ws.Service;
/**
* This class was generated by Apache CXF 4.1.3-SNAPSHOT-22c6265d4306187569b30c5b19682b37fe7d5c5c
* 2025-07-04T06:50:40.026Z
* Generated source version: 4.1.3-SNAPSHOT
*
*/
@WebServiceClient(name = "InheritService",
wsdlLocation = "file:/src/project-parent/cxf/testutils/src/main/resources/wsdl/inherit.wsdl",
targetNamespace = "http://apache.org/cxf/tests/inherit")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z", comments = "Apache CXF 4.1.3-SNAPSHOT-22c6265d4306187569b30c5b19682b37fe7d5c5c")
public class InheritService extends Service {
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public static final URL WSDL_LOCATION;
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public static final QName SERVICE = new QName("http://apache.org/cxf/tests/inherit", "InheritService");
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public static final QName InheritPort = new QName("http://apache.org/cxf/tests/inherit", "InheritPort");
static {
URL url = null;
try {
url = URI.create("file:/src/project-parent/cxf/testutils/src/main/resources/wsdl/inherit.wsdl").toURL();
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(InheritService.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "file:/src/project-parent/cxf/testutils/src/main/resources/wsdl/inherit.wsdl");
}
WSDL_LOCATION = url;
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public InheritService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public InheritService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public InheritService() {
super(WSDL_LOCATION, SERVICE);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public InheritService(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public InheritService(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public InheritService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns Inherit
*/
@WebEndpoint(name = "InheritPort")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public Inherit getInheritPort() {
return super.getPort(InheritPort, Inherit.class);
}
/**
*
* @param features
* A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
* @return
* returns Inherit
*/
@WebEndpoint(name = "InheritPort")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.026Z")
public Inherit getInheritPort(WebServiceFeature... features) {
return super.getPort(InheritPort, Inherit.class, features);
}
}