
ihe.iti.xds_b._2007.RespondingGatewayRetrieveService 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 = "RespondingGatewayRetrieve_Service", targetNamespace = "urn:ihe:iti:xds-b:2007", wsdlLocation = "file:/Users/rahulsomasunderam/IdeaProjects/home/ihe-iti/src/main/resources/iti/wsdl/XCARespondingGatewayRetrieve.wsdl")
public class RespondingGatewayRetrieveService
extends Service
{
private final static URL RESPONDINGGATEWAYRETRIEVESERVICE_WSDL_LOCATION;
private final static WebServiceException RESPONDINGGATEWAYRETRIEVESERVICE_EXCEPTION;
private final static QName RESPONDINGGATEWAYRETRIEVESERVICE_QNAME = new QName("urn:ihe:iti:xds-b:2007", "RespondingGatewayRetrieve_Service");
static {
URL url = null;
WebServiceException e = null;
try {
url = new URL("file:/Users/rahulsomasunderam/IdeaProjects/home/ihe-iti/src/main/resources/iti/wsdl/XCARespondingGatewayRetrieve.wsdl");
} catch (MalformedURLException ex) {
e = new WebServiceException(ex);
}
RESPONDINGGATEWAYRETRIEVESERVICE_WSDL_LOCATION = url;
RESPONDINGGATEWAYRETRIEVESERVICE_EXCEPTION = e;
}
public RespondingGatewayRetrieveService() {
super(__getWsdlLocation(), RESPONDINGGATEWAYRETRIEVESERVICE_QNAME);
}
public RespondingGatewayRetrieveService(WebServiceFeature... features) {
super(__getWsdlLocation(), RESPONDINGGATEWAYRETRIEVESERVICE_QNAME, features);
}
public RespondingGatewayRetrieveService(URL wsdlLocation) {
super(wsdlLocation, RESPONDINGGATEWAYRETRIEVESERVICE_QNAME);
}
public RespondingGatewayRetrieveService(URL wsdlLocation, WebServiceFeature... features) {
super(wsdlLocation, RESPONDINGGATEWAYRETRIEVESERVICE_QNAME, features);
}
public RespondingGatewayRetrieveService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public RespondingGatewayRetrieveService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns RespondingGatewayRetrievePortType
*/
@WebEndpoint(name = "RespondingGatewayRetrieve_Port_Soap12")
public RespondingGatewayRetrievePortType getRespondingGatewayRetrievePortSoap12() {
return super.getPort(new QName("urn:ihe:iti:xds-b:2007", "RespondingGatewayRetrieve_Port_Soap12"), RespondingGatewayRetrievePortType.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 RespondingGatewayRetrievePortType
*/
@WebEndpoint(name = "RespondingGatewayRetrieve_Port_Soap12")
public RespondingGatewayRetrievePortType getRespondingGatewayRetrievePortSoap12(WebServiceFeature... features) {
return super.getPort(new QName("urn:ihe:iti:xds-b:2007", "RespondingGatewayRetrieve_Port_Soap12"), RespondingGatewayRetrievePortType.class, features);
}
private static URL __getWsdlLocation() {
if (RESPONDINGGATEWAYRETRIEVESERVICE_EXCEPTION!= null) {
throw RESPONDINGGATEWAYRETRIEVESERVICE_EXCEPTION;
}
return RESPONDINGGATEWAYRETRIEVESERVICE_WSDL_LOCATION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy