source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/NhincSubjectDiscoveryEJB/src/java/gov/hhs/fha/nhinc/subjectdiscovery/SubjectDiscovery.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.8 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.subjectdiscovery;
7
8import ihe.iti.pixv3._2007.PIXConsumerPortType;
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@WebService(serviceName = "PIXConsumer_Service", portName = "PIXConsumer_Port_Soap11", endpointInterface = "ihe.iti.pixv3._2007.PIXConsumerPortType", targetNamespace = "urn:ihe:iti:pixv3:2007", wsdlLocation = "META-INF/wsdl/SubjectDiscovery/NhinSubjectDiscovery.wsdl")
18@Stateless
19public class SubjectDiscovery implements PIXConsumerPortType {
20 @Resource
21 private WebServiceContext context;
22 private static Log log = LogFactory.getLog(SubjectDiscovery.class);
23
24 public org.hl7.v3.MCCIIN000002UV01 pixConsumerPRPAIN201301UV(org.hl7.v3.PRPAIN201301UV body) {
25 return (SubjectDiscoveryImpl.pixConsumerPRPAIN201301UV(body, context));
26 }
27
28 public org.hl7.v3.MCCIIN000002UV01 pixConsumerPRPAIN201302UV(org.hl7.v3.PRPAIN201302UV body) {
29 return (SubjectDiscoveryImpl.pixConsumerPRPAIN201302UV(body, context));
30 }
31
32 public org.hl7.v3.MCCIIN000002UV01 pixConsumerPRPAIN201303UV(org.hl7.v3.PRPAIN201303UV body) {
33 return (SubjectDiscoveryImpl.pixConsumerPRPAIN201303UV(body, context));
34 }
35
36 public org.hl7.v3.MCCIIN000002UV01 pixConsumerPRPAIN201304UV(org.hl7.v3.PRPAIN201304UV body) {
37 //TODO implement this method
38 throw new UnsupportedOperationException("Not implemented yet.");
39 }
40
41 public org.hl7.v3.PRPAIN201310UV pixConsumerPRPAIN201309UV(org.hl7.v3.PRPAIN201309UV body) {
42 return (SubjectDiscoveryImpl.pixConsumerPRPAIN201309UV(body, context));
43 }
44
45}
Note: See TracBrowser for help on using the repository browser.