source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/DocumentRepositoryEJB/src/java/gov/hhs/fha/nhinc/document/DocumentRegistryService.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.7 KB
Line 
1package gov.hhs.fha.nhinc.document;
2
3import ihe.iti.xds_b._2007.DocumentRegistryPortType;
4import javax.ejb.Stateless;
5import javax.jws.WebService;
6
7/**
8 * Document Registry Service implementation. Interface to the adapter document registry.
9 *
10 * @author Neil Webb
11 */
12@WebService(serviceName = "DocumentRegistry_Service", portName = "DocumentRegistry_Port_Soap12", endpointInterface = "ihe.iti.xds_b._2007.DocumentRegistryPortType", targetNamespace = "urn:ihe:iti:xds-b:2007", wsdlLocation = "META-INF/wsdl/DocumentRegistryService/AdapterComponentDocRegistry.wsdl")
13@Stateless
14public class DocumentRegistryService implements DocumentRegistryPortType {
15
16 public oasis.names.tc.ebxml_regrep.xsd.rs._3.RegistryResponseType documentRegistryRegisterDocumentSetB(oasis.names.tc.ebxml_regrep.xsd.lcm._3.SubmitObjectsRequest body)
17 {
18 throw new UnsupportedOperationException("Not supported.");
19 }
20
21 public oasis.names.tc.ebxml_regrep.xsd.query._3.AdhocQueryResponse documentRegistryRegistryStoredQuery(oasis.names.tc.ebxml_regrep.xsd.query._3.AdhocQueryRequest body)
22 {
23 return new DocumentRegistryHelper().documentRegistryRegistryStoredQuery(body);
24 }
25
26 public org.hl7.v3.MCCIIN000002UV01 documentRegistryPRPAIN201301UV02(org.hl7.v3.PRPAIN201301UV body)
27 {
28 throw new UnsupportedOperationException("Not supported.");
29 }
30
31 public org.hl7.v3.MCCIIN000002UV01 documentRegistryPRPAIN201302UV02(org.hl7.v3.PRPAIN201302UV body)
32 {
33 throw new UnsupportedOperationException("Not supported.");
34 }
35
36 public org.hl7.v3.MCCIIN000002UV01 documentRegistryPRPAIN201304UV02(org.hl7.v3.PRPAIN201304UV body)
37 {
38 throw new UnsupportedOperationException("Not supported.");
39 }
40
41}
Note: See TracBrowser for help on using the repository browser.