fish.focus.schema.exchange.registry.v1.ExchangeRegistryService Maven / Gradle / Ivy
package fish.focus.schema.exchange.registry.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:41.699+02:00
* Generated source version: 3.5.4
*
*/
@WebServiceClient(name = "ExchangeRegistryService",
wsdlLocation = "file:/opt/jenkins/workspace/Focus_UVMS-ExchangeModule_main/model/src/main/resources/contract/ExchangeRegistryService.wsdl",
targetNamespace = "urn:registry.exchange.schema.focus.fish:v1")
public class ExchangeRegistryService extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("urn:registry.exchange.schema.focus.fish:v1", "ExchangeRegistryService");
public final static QName ExchangeRegistryServicePortType = new QName("urn:registry.exchange.schema.focus.fish:v1", "ExchangeRegistryServicePortType");
static {
URL url = null;
try {
url = new URL("file:/opt/jenkins/workspace/Focus_UVMS-ExchangeModule_main/model/src/main/resources/contract/ExchangeRegistryService.wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(ExchangeRegistryService.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/ExchangeRegistryService.wsdl");
}
WSDL_LOCATION = url;
}
public ExchangeRegistryService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public ExchangeRegistryService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public ExchangeRegistryService() {
super(WSDL_LOCATION, SERVICE);
}
public ExchangeRegistryService(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
public ExchangeRegistryService(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
public ExchangeRegistryService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns ExchangeRegistryServicePortType
*/
@WebEndpoint(name = "ExchangeRegistryServicePortType")
public ExchangeRegistryServicePortType getExchangeRegistryServicePortType() {
return super.getPort(ExchangeRegistryServicePortType, ExchangeRegistryServicePortType.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 ExchangeRegistryServicePortType
*/
@WebEndpoint(name = "ExchangeRegistryServicePortType")
public ExchangeRegistryServicePortType getExchangeRegistryServicePortType(WebServiceFeature... features) {
return super.getPort(ExchangeRegistryServicePortType, ExchangeRegistryServicePortType.class, features);
}
}