source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Common/DocumentTransformEJB/src/java/gov/hhs/fha/nhinc/transform/document/DocumentTransform.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.1 KB
Line 
1package gov.hhs.fha.nhinc.transform.document;
2
3import gov.hhs.fha.nhinc.nhinccomponentdocumenttransform.NhincComponentDocumentTransformPortType;
4import javax.ejb.Stateless;
5import javax.jws.WebService;
6
7/**
8 * Service to perform document transform operations.
9 *
10 * @author Neil Webb
11 */
12@WebService(serviceName = "NhincComponentDocumentTransformService", portName = "NhincComponentDocumentTransformPortTypeBindingPort", endpointInterface = "gov.hhs.fha.nhinc.nhinccomponentdocumenttransform.NhincComponentDocumentTransformPortType", targetNamespace = "urn:gov:hhs:fha:nhinc:nhinccomponentdocumenttransform", wsdlLocation = "META-INF/wsdl/DocumentTransform/NhincComponentDocumentTransform.wsdl")
13@Stateless
14public class DocumentTransform implements NhincComponentDocumentTransformPortType
15{
16 public gov.hhs.fha.nhinc.common.nhinccommondocumenttransform.ReplaceAdhocQueryPatientIdResponseType replaceAdhocQueryPatientId(gov.hhs.fha.nhinc.common.nhinccommondocumenttransform.ReplaceAdhocQueryPatientIdRequestType replaceAdhocQueryPatientIdRequest)
17 {
18 return new DocumentTransformHelper().replaceAdhocQueryPatientId(replaceAdhocQueryPatientIdRequest);
19 }
20}
Note: See TracBrowser for help on using the repository browser.