001package ca.uhn.hl7v2.app; 002 003import ca.uhn.hl7v2.model.Message; 004 005/** 006 * An application that returns AA acknowledgements. 007 * @author Bryan Tripp 008 */ 009public class AcceptApplication extends DefaultApplication { 010 011 /** Creates a new instance of AcceptApplication */ 012 public AcceptApplication() { 013 } 014 015 /** 016 * Supplies details of application accept (AA) acknowledgement. 017 * Actually this method does nothing, because DefaultApplication.makeACK() 018 * supplies the desired values (this is just here to override inclusion of the 019 * default error message). 020 */ 021 public void fillDetails(Message ack) throws ApplicationException { 022 //do nothing -- no more information needed 023 } 024 025}