source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/SubscriptionDteEjb/src/java/gov/hhs/fha/nhinc/subscription/dte/AckHelper.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: 746 bytes
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package gov.hhs.fha.nhinc.subscription.dte;
6
7import gov.hhs.fha.nhinc.common.nhinccommon.AcknowledgementType;
8import gov.hhs.fha.nhinc.common.subscriptiondte.CreateAckResponseType;
9import gov.hhs.fha.nhinc.common.subscriptiondte.CreateAckRequestType;
10
11/**
12 *
13 * @author rayj
14 */
15public class AckHelper {
16
17 public static CreateAckResponseType createAck(CreateAckRequestType createAckRequest) {
18 CreateAckResponseType response = new CreateAckResponseType();
19 response.setAcknowledgement(createAck());
20 return null;
21 }
22
23 public static AcknowledgementType createAck() {
24 return new AcknowledgementType();
25 }
26}
Note: See TracBrowser for help on using the repository browser.