133. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:12 AM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

133.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\hl7\builder HL7MetaData.java Wed May 29 15:26:00 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\hl7\builder HL7MetaData.java Mon Jun 10 19:27:47 2019 UTC

133.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 108
Changed 1 2
Inserted 0 0
Removed 0 0

133.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

133.4 Active regular expressions

No regular expressions were active.

133.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2004 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.f w.hl7.buil der;
  5  
  6   // Java cl asses
  7   import jav a.util.Lis t;
  8  
  9   import org .apache.co mmons.lang .builder.T oStringBui lder;
  10  
  11   import gov .va.med.fw .hl7.Batch Message;
  12   import gov .va.med.fw .hl7.Inval idMessageE xception;
  13   import gov .va.med.fw .hl7.Messa ge;
  14   import gov .va.med.fw .hl7.Segme nt;
  15   import gov .va.med.fw .model.Abs tractEntit y;
  16  
  17   /**
  18    * @author   DN S
  19    * @versio n 1.0
  20    */
  21   public cla ss HL7Meta Data exten ds Abstrac tMetaData  {
  22  
  23           /* *
  24            *  An instan ce of seri alVersionU ID
  25            * /
  26           pr ivate stat ic final l ong serial VersionUID  = -819719 2513563732 428L;
  27  
  28           pu blic HL7Me taData(Abs tractEntit y entity)  {
  29                    supe r(entity);
  30           }
  31  
  32           pu blic HL7Me taData(Mes sage messa ge) {
  33                    supe r(message) ;
  34           }
  35  
  36           pu blic HL7Me taData(Abs tractEntit y entity,  Message me ssage) {
  37                    supe r(entity,  message);
  38           }
  39  
  40           pu blic Batch Message ge tBatchMess age() {
  41                    Mess age msg =  getMessage ();
  42                    if ( logger.isD ebugEnable d()) {
  43                             logger .debug("Me ssage: " +  ToStringB uilder.ref lectionToS tring(msg) );
  44                    }
  45                    retu rn (msg in stanceof B atchMessag e ? (Batch Message) m sg : null) ;
  46           }
  47  
  48           pu blic Segme nt getSegm ent(String  name) thr ows Invali dMessageEx ception {
  49                    retu rn getMess age().getS egment(nam e);
  50           }
  51  
  52           pu blic List  getSegment s(String n ame) throw s InvalidM essageExce ption {
  53                    retu rn getMess age().getS egments(na me);
  54           }
  55   }