source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/PatientCorrelationEJB/src/java/gov/hhs/fha/nhinc/patientcorrelationservice/PatientCorrelationService.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 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package gov.hhs.fha.nhinc.patientcorrelationservice;
7
8import gov.hhs.fha.nhinc.nhinccomponentpatientcorrelation.PatientCorrelationPortType;
9import gov.hhs.fha.nhinc.patientcorrelationservice.impl.PatientCorrelationServiceImpl;
10import javax.ejb.Stateless;
11import javax.jws.WebService;
12
13/**
14 *
15 * @author rayj
16 */
17@WebService(serviceName = "PatientCorrelationService", portName = "PatientCorrelationPort", endpointInterface = "gov.hhs.fha.nhinc.nhinccomponentpatientcorrelation.PatientCorrelationPortType", targetNamespace = "urn:gov:hhs:fha:nhinc:nhinccomponentpatientcorrelation", wsdlLocation = "META-INF/wsdl/PatientCorrelationService/NhincComponentPatientCorrelation.wsdl")
18@Stateless
19public class PatientCorrelationService implements PatientCorrelationPortType {
20
21 public org.hl7.v3.RetrievePatientCorrelationsResponseType retrievePatientCorrelations(org.hl7.v3.RetrievePatientCorrelationsRequestType retrievePatientCorrelationsRequest) {
22 return PatientCorrelationServiceImpl.retrievePatientCorrelations(retrievePatientCorrelationsRequest);
23 }
24
25 public org.hl7.v3.AddPatientCorrelationResponseType addPatientCorrelation(org.hl7.v3.AddPatientCorrelationRequestType addPatientCorrelationRequest) {
26 return PatientCorrelationServiceImpl.addPatientCorrelation(addPatientCorrelationRequest);
27 }
28
29 public org.hl7.v3.RemovePatientCorrelationResponseType removePatientCorrelation(org.hl7.v3.RemovePatientCorrelationRequestType removePatientCorrelationRequest) {
30 return PatientCorrelationServiceImpl.removePatientCorrelation(removePatientCorrelationRequest);
31 }
32
33}
Note: See TracBrowser for help on using the repository browser.