org.apache.chemistry.opencmis.commons.impl.jaxb.ObjectService Maven / Gradle / Ivy
package org.apache.chemistry.opencmis.commons.impl.jaxb;
import java.net.URL;
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.0.4
* 2024-04-10T18:10:07.344Z
* Generated source version: 4.0.4
*
*/
@WebServiceClient(name = "ObjectService",
wsdlLocation = "classpath:/wsdl/cmis11/CMISWS-Service.wsdl",
targetNamespace = "http://docs.oasis-open.org/ns/cmis/ws/200908/")
public class ObjectService extends Service {
public static final URL WSDL_LOCATION;
public static final QName SERVICE = new QName("http://docs.oasis-open.org/ns/cmis/ws/200908/", "ObjectService");
public static final QName ObjectServicePort = new QName("http://docs.oasis-open.org/ns/cmis/ws/200908/", "ObjectServicePort");
static {
URL url = ObjectService.class.getClassLoader().getResource("/wsdl/cmis11/CMISWS-Service.wsdl");
if (url == null) {
url = ObjectService.class.getClassLoader().getResource("wsdl/cmis11/CMISWS-Service.wsdl");
}
if (url == null) {
java.util.logging.Logger.getLogger(ObjectService.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "classpath:/wsdl/cmis11/CMISWS-Service.wsdl");
}
WSDL_LOCATION = url;
}
public ObjectService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public ObjectService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public ObjectService() {
super(WSDL_LOCATION, SERVICE);
}
public ObjectService(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
public ObjectService(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
public ObjectService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns ObjectServicePort
*/
@WebEndpoint(name = "ObjectServicePort")
public ObjectServicePort getObjectServicePort() {
return super.getPort(ObjectServicePort, ObjectServicePort.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 ObjectServicePort
*/
@WebEndpoint(name = "ObjectServicePort")
public ObjectServicePort getObjectServicePort(WebServiceFeature... features) {
return super.getPort(ObjectServicePort, ObjectServicePort.class, features);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy