/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package gov.hhs.fha.nhinc.subscription.dte; import gov.hhs.fha.nhinc.common.nhinccommon.AcknowledgementType; import gov.hhs.fha.nhinc.common.subscriptiondte.CreateAckResponseType; import gov.hhs.fha.nhinc.common.subscriptiondte.CreateAckRequestType; /** * * @author rayj */ public class AckHelper { public static CreateAckResponseType createAck(CreateAckRequestType createAckRequest) { CreateAckResponseType response = new CreateAckResponseType(); response.setAcknowledgement(createAck()); return null; } public static AcknowledgementType createAck() { return new AcknowledgementType(); } }