![JAR search and dependency download from the Maven repository](/logo.png)
org.witsml.wsdl._120.WMLS Maven / Gradle / Ivy
The newest version!
package org.witsml.wsdl._120;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceException;
import javax.xml.ws.WebServiceFeature;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b130926.1035
* Generated source version: 2.2
*
*/
@WebServiceClient(name = "WMLS", targetNamespace = "http://www.witsml.org/wsdl/120", wsdlLocation = "/wsdl/witsml-1.2.0.wsdl")
public class WMLS
extends Service
{
private final static URL WMLS_WSDL_LOCATION;
private final static WebServiceException WMLS_EXCEPTION;
private final static QName WMLS_QNAME = new QName("http://www.witsml.org/wsdl/120", "WMLS");
static {
WMLS_WSDL_LOCATION = org.witsml.wsdl._120.WMLS.class.getResource("/wsdl/witsml-1.2.0.wsdl");
WebServiceException e = null;
if (WMLS_WSDL_LOCATION == null) {
e = new WebServiceException("Cannot find '/wsdl/witsml-1.2.0.wsdl' wsdl. Place the resource correctly in the classpath.");
}
WMLS_EXCEPTION = e;
}
public WMLS() {
super(__getWsdlLocation(), WMLS_QNAME);
}
public WMLS(WebServiceFeature... features) {
super(__getWsdlLocation(), WMLS_QNAME, features);
}
public WMLS(URL wsdlLocation) {
super(wsdlLocation, WMLS_QNAME);
}
public WMLS(URL wsdlLocation, WebServiceFeature... features) {
super(wsdlLocation, WMLS_QNAME, features);
}
public WMLS(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public WMLS(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns StoreSoapPort
*/
@WebEndpoint(name = "StoreSoapPort")
public StoreSoapPort getStoreSoapPort() {
return super.getPort(new QName("http://www.witsml.org/wsdl/120", "StoreSoapPort"), StoreSoapPort.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 StoreSoapPort
*/
@WebEndpoint(name = "StoreSoapPort")
public StoreSoapPort getStoreSoapPort(WebServiceFeature... features) {
return super.getPort(new QName("http://www.witsml.org/wsdl/120", "StoreSoapPort"), StoreSoapPort.class, features);
}
private static URL __getWsdlLocation() {
if (WMLS_EXCEPTION!= null) {
throw WMLS_EXCEPTION;
}
return WMLS_WSDL_LOCATION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy