001 package org.vmdb.hl7;
002
003 /**
004 * <p><Title:> Patient Additional Demographics (PD1) Segment Placeholder. </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>Use of this process has not yet been implemented in high level code. See
009 * HL7 Standard Chapter 3 for details.</p>
010 * @author Michael K. Martin
011 * @version 1.0
012 */
013
014 public class PD1Segment extends HL7Segment {
015 private String sNm = "PD1";
016 private String sRl =
017 "DT[IS][IS][XON][XCN][IS][IS][IS][IS][ID][CX][CE][ID]";
018
019 public PD1Segment() {
020 setName( sNm );
021 setRule( sRl );
022 }
023
024 public PD1Segment( HL7Message msgParent ) {
025 super( msgParent );
026 setName( sNm );
027 setRule( sRl );
028 }
029
030 } // End class PD1Segment
031