source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/NhincDocRetrieveEJB/src/java/gov/hhs/fha/nhinc/docretrieve/DocRetrieve.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.docretrieve;
7
8import ihe.iti.xds_b._2007.RespondingGatewayRetrievePortType;
9import javax.annotation.Resource;
10import javax.ejb.Stateless;
11import javax.jws.WebService;
12import javax.xml.ws.WebServiceContext;
13import org.apache.commons.logging.Log;
14import org.apache.commons.logging.LogFactory;
15
16/**
17 *
18 * @author vvickers
19 */
20@WebService(serviceName = "RespondingGateway_Retrieve_Service", portName = "RespondingGateway_Retrieve_Port_Soap11", endpointInterface = "ihe.iti.xds_b._2007.RespondingGatewayRetrievePortType", targetNamespace = "urn:ihe:iti:xds-b:2007", wsdlLocation = "META-INF/wsdl/DocRetrieve/NhinDocRetrieve.wsdl")
21@Stateless
22public class DocRetrieve implements RespondingGatewayRetrievePortType {
23
24 @Resource
25 private WebServiceContext context;
26 private static Log log = LogFactory.getLog(DocRetrieve.class);
27
28 public ihe.iti.xds_b._2007.RetrieveDocumentSetResponseType respondingGatewayCrossGatewayRetrieve(ihe.iti.xds_b._2007.RetrieveDocumentSetRequestType body) {
29 DocRetrieveImpl impl = new DocRetrieveImpl();
30 return(impl.respondingGatewayCrossGatewayRetrieve(body, context));
31 }
32
33}
Note: See TracBrowser for help on using the repository browser.