source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/AdapterMpiEJB/src/java/gov/hhs/fha/nhinc/adaptermpi/AdapterMpi.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: 750 bytes
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package gov.hhs.fha.nhinc.adaptermpi;
6
7import javax.ejb.Stateless;
8import javax.jws.WebService;
9
10/**
11 *
12 * @author jhoppesc
13 */
14@WebService(serviceName = "AdapterMpiService", portName = "AdapterMpiPort", endpointInterface = "gov.hhs.fha.nhinc.adaptermpi.AdapterMpiPortType", targetNamespace = "urn:gov:hhs:fha:nhinc:adaptermpi", wsdlLocation = "META-INF/wsdl/AdapterMpi/AdapterMpi.wsdl")
15@Stateless
16public class AdapterMpi implements AdapterMpiPortType {
17
18 public org.hl7.v3.PRPAIN201306UV findCandidates(org.hl7.v3.PIXConsumerPRPAIN201305UVRequestType findCandidatesRequest) {
19 return AdapterMpiQuery.query(findCandidatesRequest);
20 }
21}
Note: See TracBrowser for help on using the repository browser.