fish.focus.schema.exchange.plugin.v1.ExchangeModuleService Maven / Gradle / Ivy
package fish.focus.schema.exchange.plugin.v1;
import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceFeature;
import javax.xml.ws.Service;
/**
* This class was generated by Apache CXF 3.5.4
* 2024-09-05T09:23:43.666+02:00
* Generated source version: 3.5.4
*
*/
@WebServiceClient(name = "ExchangeModuleService",
wsdlLocation = "file:/opt/jenkins/workspace/Focus_UVMS-ExchangeModule_main/model/src/main/resources/contract/ExchangePluginService.wsdl",
targetNamespace = "urn:plugin.exchange.schema.focus.fish:v1")
public class ExchangeModuleService extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("urn:plugin.exchange.schema.focus.fish:v1", "ExchangeModuleService");
public final static QName ExchangeModulePortType = new QName("urn:plugin.exchange.schema.focus.fish:v1", "ExchangeModulePortType");
static {
URL url = null;
try {
url = new URL("file:/opt/jenkins/workspace/Focus_UVMS-ExchangeModule_main/model/src/main/resources/contract/ExchangePluginService.wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(ExchangeModuleService.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "file:/opt/jenkins/workspace/Focus_UVMS-ExchangeModule_main/model/src/main/resources/contract/ExchangePluginService.wsdl");
}
WSDL_LOCATION = url;
}
public ExchangeModuleService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public ExchangeModuleService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public ExchangeModuleService() {
super(WSDL_LOCATION, SERVICE);
}
public ExchangeModuleService(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
public ExchangeModuleService(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
public ExchangeModuleService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns ExchangeModulePortType
*/
@WebEndpoint(name = "ExchangeModulePortType")
public ExchangeModulePortType getExchangeModulePortType() {
return super.getPort(ExchangeModulePortType, ExchangeModulePortType.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 ExchangeModulePortType
*/
@WebEndpoint(name = "ExchangeModulePortType")
public ExchangeModulePortType getExchangeModulePortType(WebServiceFeature... features) {
return super.getPort(ExchangeModulePortType, ExchangeModulePortType.class, features);
}
}