JMSOutMTOMService.java
package org.apache.cxf.jms_mtom;
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-805eaa78a566e338c23b7ec630e304d0b068e354
* 2025-06-13T06:22:52.527Z
* Generated source version: 4.1.3-SNAPSHOT
*
*/
@WebServiceClient(name = "JMSOutMTOMService",
wsdlLocation = "file:/src/project-parent/cxf/testutils/src/main/resources/wsdl/jms_test_mtom.wsdl",
targetNamespace = "http://cxf.apache.org/jms_mtom")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z", comments = "Apache CXF 4.1.3-SNAPSHOT-805eaa78a566e338c23b7ec630e304d0b068e354")
public class JMSOutMTOMService extends Service {
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public static final URL WSDL_LOCATION;
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public static final QName SERVICE = new QName("http://cxf.apache.org/jms_mtom", "JMSOutMTOMService");
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public static final QName MTOMPort = new QName("http://cxf.apache.org/jms_mtom", "MTOMPort");
static {
URL url = null;
try {
url = URI.create("file:/src/project-parent/cxf/testutils/src/main/resources/wsdl/jms_test_mtom.wsdl").toURL();
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(JMSOutMTOMService.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/jms_test_mtom.wsdl");
}
WSDL_LOCATION = url;
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public JMSOutMTOMService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public JMSOutMTOMService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public JMSOutMTOMService() {
super(WSDL_LOCATION, SERVICE);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public JMSOutMTOMService(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public JMSOutMTOMService(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public JMSOutMTOMService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns JMSMTOMPortType
*/
@WebEndpoint(name = "MTOMPort")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public JMSMTOMPortType getMTOMPort() {
return super.getPort(MTOMPort, JMSMTOMPortType.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 JMSMTOMPortType
*/
@WebEndpoint(name = "MTOMPort")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-06-13T06:22:52.527Z")
public JMSMTOMPortType getMTOMPort(WebServiceFeature... features) {
return super.getPort(MTOMPort, JMSMTOMPortType.class, features);
}
}