
ihe.iti.xds_b._2007.InitiatingGatewayRetrieveService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ihe-iti Show documentation
Show all versions of ihe-iti Show documentation
Codegen for IHE ITI Profiles.
package ihe.iti.xds_b._2007;
import java.net.MalformedURLException;
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.6b21
* Generated source version: 2.2
*
*/
@WebServiceClient(name = "InitiatingGatewayRetrieve_Service", targetNamespace = "urn:ihe:iti:xds-b:2007", wsdlLocation = "file:/Users/rahulsomasunderam/src/ihe-iti/src/main/resources/iti/wsdl/XCAInitiatingGatewayRetrieve.wsdl")
public class InitiatingGatewayRetrieveService
extends Service
{
private final static URL INITIATINGGATEWAYRETRIEVESERVICE_WSDL_LOCATION;
private final static WebServiceException INITIATINGGATEWAYRETRIEVESERVICE_EXCEPTION;
private final static QName INITIATINGGATEWAYRETRIEVESERVICE_QNAME = new QName("urn:ihe:iti:xds-b:2007", "InitiatingGatewayRetrieve_Service");
static {
URL url = null;
WebServiceException e = null;
try {
url = new URL("file:/Users/rahulsomasunderam/src/ihe-iti/src/main/resources/iti/wsdl/XCAInitiatingGatewayRetrieve.wsdl");
} catch (MalformedURLException ex) {
e = new WebServiceException(ex);
}
INITIATINGGATEWAYRETRIEVESERVICE_WSDL_LOCATION = url;
INITIATINGGATEWAYRETRIEVESERVICE_EXCEPTION = e;
}
public InitiatingGatewayRetrieveService() {
super(__getWsdlLocation(), INITIATINGGATEWAYRETRIEVESERVICE_QNAME);
}
public InitiatingGatewayRetrieveService(WebServiceFeature... features) {
super(__getWsdlLocation(), INITIATINGGATEWAYRETRIEVESERVICE_QNAME, features);
}
public InitiatingGatewayRetrieveService(URL wsdlLocation) {
super(wsdlLocation, INITIATINGGATEWAYRETRIEVESERVICE_QNAME);
}
public InitiatingGatewayRetrieveService(URL wsdlLocation, WebServiceFeature... features) {
super(wsdlLocation, INITIATINGGATEWAYRETRIEVESERVICE_QNAME, features);
}
public InitiatingGatewayRetrieveService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public InitiatingGatewayRetrieveService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns InitiatingGatewayRetrievePortType
*/
@WebEndpoint(name = "InitiatingGatewayRetrieve_Port_Soap12")
public InitiatingGatewayRetrievePortType getInitiatingGatewayRetrievePortSoap12() {
return super.getPort(new QName("urn:ihe:iti:xds-b:2007", "InitiatingGatewayRetrieve_Port_Soap12"), InitiatingGatewayRetrievePortType.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 InitiatingGatewayRetrievePortType
*/
@WebEndpoint(name = "InitiatingGatewayRetrieve_Port_Soap12")
public InitiatingGatewayRetrievePortType getInitiatingGatewayRetrievePortSoap12(WebServiceFeature... features) {
return super.getPort(new QName("urn:ihe:iti:xds-b:2007", "InitiatingGatewayRetrieve_Port_Soap12"), InitiatingGatewayRetrievePortType.class, features);
}
private static URL __getWsdlLocation() {
if (INITIATINGGATEWAYRETRIEVESERVICE_EXCEPTION!= null) {
throw INITIATINGGATEWAYRETRIEVESERVICE_EXCEPTION;
}
return INITIATINGGATEWAYRETRIEVESERVICE_WSDL_LOCATION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy