001 package org.vmdb.hl7; 002 003 /** 004 * <p><Title:> Financial Transaction (FT1) 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 6 for details.</p> 010 * @author Michael K. Martin 011 * @version 1.0 012 */ 013 014 public class FT1Segment extends HL7Segment { 015 private String sNm = "FT1"; 016 private String sRl = 017 "DT[SI][ST][ST]TS[TS]IS CE[ST][ST][NM][CP][CP][CE]" + 018 "[CE][CP][PL][IS][IS][CE][XCN][XCN][CP][EI][XCN][CE]"; 019 020 public FT1Segment() { 021 setName( sNm ); 022 setRule( sRl ); 023 } 024 025 public FT1Segment( HL7SegmentContainer msgParent ) { 026 super( msgParent ); 027 setName( sNm ); 028 setRule( sRl ); 029 } 030 } // End class FT1Segment 031