source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/NhincHiemSubscriptionEJB/src/java/gov/hhs/fha/nhinc/hiemnotify/HiemNotify.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.0 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.hiemnotify;
6
7import javax.annotation.Resource;
8import javax.ejb.Stateless;
9import javax.jws.WebService;
10import javax.xml.ws.WebServiceContext;
11import org.oasis_open.docs.wsn.bw_2.NotificationConsumer;
12import org.apache.commons.logging.Log;
13import org.apache.commons.logging.LogFactory;
14
15/**
16 *
17 * @author jhoppesc
18 */
19@WebService(serviceName = "NotificationConsumerService", portName = "NotificationConsumerPort", endpointInterface = "org.oasis_open.docs.wsn.bw_2.NotificationConsumer", targetNamespace = "http://docs.oasis-open.org/wsn/bw-2", wsdlLocation = "META-INF/wsdl/HiemNotify/NhinSubscription.wsdl")
20@Stateless
21public class HiemNotify implements NotificationConsumer {
22
23 @Resource
24 private WebServiceContext context;
25 private static Log log = LogFactory.getLog(HiemNotify.class);
26
27 public void notify(org.oasis_open.docs.wsn.b_2.Notify notify) {
28 HiemNotifyImpl.notify(notify, context);
29 }
30}
Note: See TracBrowser for help on using the repository browser.