org.apache.cxf.wsn.jaxws.SubscriptionManagerService Maven / Gradle / Ivy
The newest version!
package org.apache.cxf.wsn.jaxws;
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;
import org.oasis_open.docs.wsn.bw_2.SubscriptionManager;
/**
* This class was generated by Apache CXF 4.0.5
* 2024-07-11T18:15:27.965-04:00
* Generated source version: 4.0.5
*
*/
@WebServiceClient(name = "SubscriptionManagerService",
wsdlLocation = "file:/Users/ffang/projects/cxf-release-2024july/target/checkout/services/wsn/wsn-api/src/main/resources/org/apache/cxf/wsn/wsdl/wsn.wsdl",
targetNamespace = "http://cxf.apache.org/wsn/jaxws")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00", comments = "Apache CXF 4.0.5")
public class SubscriptionManagerService extends Service {
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public static final URL WSDL_LOCATION;
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public static final QName SERVICE = new QName("http://cxf.apache.org/wsn/jaxws", "SubscriptionManagerService");
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public static final QName SubscriptionManagerPort = new QName("http://cxf.apache.org/wsn/jaxws", "SubscriptionManagerPort");
static {
URL url = null;
try {
url = URI.create("file:/Users/ffang/projects/cxf-release-2024july/target/checkout/services/wsn/wsn-api/src/main/resources/org/apache/cxf/wsn/wsdl/wsn.wsdl").toURL();
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(SubscriptionManagerService.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "file:/Users/ffang/projects/cxf-release-2024july/target/checkout/services/wsn/wsn-api/src/main/resources/org/apache/cxf/wsn/wsdl/wsn.wsdl");
}
WSDL_LOCATION = url;
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public SubscriptionManagerService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public SubscriptionManagerService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public SubscriptionManagerService() {
super(WSDL_LOCATION, SERVICE);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public SubscriptionManagerService(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public SubscriptionManagerService(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public SubscriptionManagerService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns SubscriptionManager
*/
@WebEndpoint(name = "SubscriptionManagerPort")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public SubscriptionManager getSubscriptionManagerPort() {
return super.getPort(SubscriptionManagerPort, SubscriptionManager.class);
}
/**
*
* @param features
* A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features
parameter will have their default values.
* @return
* returns SubscriptionManager
*/
@WebEndpoint(name = "SubscriptionManagerPort")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2024-07-11T18:15:27.965-04:00")
public SubscriptionManager getSubscriptionManagerPort(WebServiceFeature... features) {
return super.getPort(SubscriptionManagerPort, SubscriptionManager.class, features);
}
}