source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/DocumentRepositoryEJB/src/java/gov/hhs/fha/nhinc/document/DocumentRepositoryService.java@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 1.2 KB
Line 
1package gov.hhs.fha.nhinc.document;
2
3import ihe.iti.xds_b._2007.DocumentRepositoryPortType;
4import javax.ejb.Stateless;
5import javax.jws.WebService;
6import javax.xml.ws.BindingType;
7
8/**
9 *
10 * @author Neil Webb
11 */
12@WebService(serviceName = "DocumentRepository_Service", portName = "DocumentRepository_Port_Soap12", endpointInterface = "ihe.iti.xds_b._2007.DocumentRepositoryPortType", targetNamespace = "urn:ihe:iti:xds-b:2007", wsdlLocation = "META-INF/wsdl/DocumentRepositoryService/AdapterComponentDocRepository.wsdl")
13@BindingType(value = javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING)
14@Stateless
15public class DocumentRepositoryService implements DocumentRepositoryPortType {
16
17 public oasis.names.tc.ebxml_regrep.xsd.rs._3.RegistryResponseType documentRepositoryProvideAndRegisterDocumentSetB(ihe.iti.xds_b._2007.ProvideAndRegisterDocumentSetRequestType body)
18 {
19 throw new UnsupportedOperationException("documentRepositoryProvideAndRegisterDocumentSetB not supported.");
20 }
21
22 public ihe.iti.xds_b._2007.RetrieveDocumentSetResponseType documentRepositoryRetrieveDocumentSet(ihe.iti.xds_b._2007.RetrieveDocumentSetRequestType body)
23 {
24 return new DocumentRepositoryHelper().documentRepositoryRetrieveDocumentSet(body);
25 }
26
27}
Note: See TracBrowser for help on using the repository browser.