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