source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/NhincDocQueryEJB/src/java/gov/hhs/fha/nhinc/docquery/DocQuery.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 */
5package gov.hhs.fha.nhinc.docquery;
6
7import ihe.iti.xds_b._2007.RespondingGatewayQueryPortType;
8import javax.annotation.Resource;
9import javax.ejb.Stateless;
10import javax.jws.WebService;
11import javax.xml.ws.WebServiceContext;
12import org.apache.commons.logging.Log;
13import org.apache.commons.logging.LogFactory;
14
15/**
16 *
17 * @author vvickers
18 */
19@WebService(serviceName = "RespondingGateway_Query_Service", portName = "RespondingGateway_Query_Port_Soap11", endpointInterface = "ihe.iti.xds_b._2007.RespondingGatewayQueryPortType", targetNamespace = "urn:ihe:iti:xds-b:2007", wsdlLocation = "META-INF/wsdl/DocQuery/NhinDocQuery.wsdl")
20@Stateless
21public class DocQuery implements RespondingGatewayQueryPortType {
22
23 @Resource
24 private WebServiceContext context;
25 private static Log log = LogFactory.getLog(DocQuery.class);
26
27 public oasis.names.tc.ebxml_regrep.xsd.query._3.AdhocQueryResponse respondingGatewayCrossGatewayQuery(oasis.names.tc.ebxml_regrep.xsd.query._3.AdhocQueryRequest body) {
28 DocQueryImpl impl = new DocQueryImpl();
29 return(impl.respondingGatewayCrossGatewayQuery(body, context));
30 }
31}
Note: See TracBrowser for help on using the repository browser.