source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/AdapterReidentificationEJB/src/java/gov/hhs/fha/nhinc/adapter/reidentification/AdapterReidentification.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 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package gov.hhs.fha.nhinc.adapter.reidentification;
7
8import gov.hhs.fha.nhinc.adapterreidentification.AdapterReidentificationPortType;
9import javax.ejb.Stateless;
10import javax.jws.WebService;
11
12/**
13 * This provides the web service access to the data store that maps the pseudo
14 * identities to the identities know to this gateway.
15 */
16@WebService(serviceName = "AdapterReidentification", portName = "AdapterReidentificationBindingSoap11", endpointInterface = "gov.hhs.fha.nhinc.adapterreidentification.AdapterReidentificationPortType", targetNamespace = "urn:gov:hhs:fha:nhinc:adapterreidentification", wsdlLocation = "META-INF/wsdl/AdapterReidentification/AdapterReidentification.wsdl")
17@Stateless
18public class AdapterReidentification implements AdapterReidentificationPortType {
19
20 public org.hl7.v3.PIXConsumerPRPAIN201310UVRequestType getRealIdentifier(org.hl7.v3.PIXConsumerPRPAIN201309UVRequestType getRealIdentifierRequest) {
21 AdapterReidentificationImpl impl = new AdapterReidentificationImpl();
22 return impl.getRealIdentifier(getRealIdentifierRequest);
23 }
24
25}
Note: See TracBrowser for help on using the repository browser.