1 package ca.uhn.hl7v2.app;
2
3 import ca.uhn.hl7v2.model.Message;
4
5 /**
6 * An application that returns AA acknowledgements.
7 * @author Bryan Tripp
8 */
9 public class AcceptApplication extends DefaultApplication {
10
11 /** Creates a new instance of AcceptApplication */
12 public AcceptApplication() {
13 }
14
15 /**
16 * Supplies details of application accept (AA) acknowledgement.
17 * Actually this method does nothing, because DefaultApplication.makeACK()
18 * supplies the desired values (this is just here to override inclusion of the
19 * default error message).
20 */
21 public void fillDetails(Message ack) {
22 //do nothing -- no more information needed
23 }
24
25 }