001 package org.vmdb.hl7;
002
003 /**
004 * <p><Title:> Acknowlegement (ACK) Message.</p>
005 * <p>Description: HL7 Network Connectivity For VMDB. </p>
006 * <p>Copyright: Copyright (c) 2002 - 2003. </p>
007 * <p>Company: Veterinary Medical Database (VMDB). </p>
008 * <p>Not yet fully implemented. Just a place holder for the name and rule.</p>
009 * @author Michael K. Martin
010 * @version 1.0
011 */
012
013 public class ACKMessage extends HL7Message {
014
015 public ACKMessage() {
016 super();
017 setName( "ACK" );
018 setRule( "MSH MSA[ERR]" );
019 }
020 }